2

Today I installed and configured Munin on my server. I didn't like how it shows all those graphs without having any login system nor authentication. Is there a way to set up an authentication to Munin?

Thank you in advance!

Doon
  • 153
  • 6

1 Answers1

3

The simplest way is to set up basic authentication using Apache:

<Directory "/path/to/munin">
    AuthType Basic
    AuthName "Password Required"
    AuthUserFile /path/to/passwd
    Require valid-user
</Directory>

Then you can manage users using the htpasswd command:

$ htpasswd -c /path/to/passwd user1
Spack
  • 1,604
  • 15
  • 22