summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJason Levine <levineja@mail.nih.gov>2017-02-23 14:40:00 -0500
committerJason Levine <levineja@mail.nih.gov>2017-02-23 14:58:50 -0500
commitbb427191b7923bc97775132182b8c3cd57646c35 (patch)
tree926dec2320864f1db10314e924897053a025652a /README.md
parent73d0b3879b90fb48a9177a03382cfd132ab5c431 (diff)
downloadmunin-bb427191b7923bc97775132182b8c3cd57646c35.tar.gz
munin-bb427191b7923bc97775132182b8c3cd57646c35.tar.bz2
munin-bb427191b7923bc97775132182b8c3cd57646c35.tar.xz
munin-bb427191b7923bc97775132182b8c3cd57646c35.zip
add support for multiple munin usernames and passwords
use openssl to generate htpasswd file remove apache2-utils dependency update readme regarding username/password support
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 783c2d5..7989a43 100644
--- a/README.md
+++ b/README.md
@@ -6,10 +6,10 @@ All the configuration is done through the environment.
### HTTP Credentials
-These are the credentials used to authenticate the HTTP dashboard
+These are the credentials used to authenticate the HTTP dashboard; both take a space-delimited list
-* `MUNIN_USER`
-* `MUNIN_PASSWORD`
+* `MUNIN_USERS`
+* `MUNIN_PASSWORDS`
### SMTP info for alerts
@@ -60,8 +60,8 @@ docker run -d \
-v /var/lib/munin:/var/lib/munin \
-v /var/run/munin:/var/run/munin \
-v /var/cache/munin:/var/cache/munin \
- -e MUNIN_USER=http-user \
- -e MUNIN_PASSWORD=secret-password \
+ -e MUNIN_USERS=http-user another-user \
+ -e MUNIN_PASSWORDS=secret-password other-users-password \
-e SMTP_HOST=smtp.example.com \
-e SMTP_PORT=587 \
-e SMTP_USERNAME=smtp-username \