summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorSoulou <leo.unbek@gmail.com>2017-03-03 10:14:12 +0100
committerGitHub <noreply@github.com>2017-03-03 10:14:12 +0100
commit1ed62c531f44712bc7f86ed8f8bcf1afa8d01132 (patch)
tree03d9460f30aca25e514593e1c43d4db350f2fa57 /README.md
parent73d0b3879b90fb48a9177a03382cfd132ab5c431 (diff)
parent09e12a6d4fc01f9252de5cbf869cfa55ea1aaf23 (diff)
downloadmunin-1ed62c531f44712bc7f86ed8f8bcf1afa8d01132.tar.gz
munin-1ed62c531f44712bc7f86ed8f8bcf1afa8d01132.tar.bz2
munin-1ed62c531f44712bc7f86ed8f8bcf1afa8d01132.tar.xz
munin-1ed62c531f44712bc7f86ed8f8bcf1afa8d01132.zip
Merge pull request #8 from delfuego/master
add support for multiple munin usernames and passwords
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..d32553d 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 \