RPMも用意されているが、aptなどでパッケージが用意されていればそちらがお勧め。
デフォルトは最小限でシンプルな構成であるので、いくつか追加でインストールする必要がある。サーバーごとにインストールするモジュールが用意されている。
Apacheを経由させたほうがSSL対応にもなるし、アクセス制限も可能なので安全
webprefix=/webmin webprefixnoredir=1 referer=webminが動いているホストのIP
ProxyPass /webmin/ http://localhost:10000/ ProxyPassReverse /webmin/ http://localhost:10000/
こうするとサーバー名/webminでアクセスできるようになる
# for webmin settings SSLProxyEngine On ProxyPass /webmin/ https://localhost:10000/ ProxyPassReverse /webmin/ https://localhost:10000/ <Location /webmin> SSLrequireSSL deny from all allow from 192.168.11.0/255.255.255.0 AuthType Basic AuthName "Webmin" AuthUserFile /etc/httpd/conf/.htpasswd Require valid-user </Location>