今天我在我的服务器上安装并配置了 Munin。我不喜欢它在没有任何登录系统或身份验证的情况下显示所有这些图表。有没有办法为 Munin 设置身份验证?
先感谢您!
答案1
最简单的方法是设置基本身份验证使用 Apache:
<Directory "/path/to/munin">
AuthType Basic
AuthName "Password Required"
AuthUserFile /path/to/passwd
Require valid-user
</Directory>
然后您可以使用以下命令管理用户htpasswd
:
$ htpasswd -c /path/to/passwd user1