diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2021-03-22 20:04:09 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-22 20:04:09 +1100 |
| commit | a44f0cf959bfb2c20a3defe7c92f8018799ead86 (patch) | |
| tree | 14486e0df62df1a74ee55f34c0cb71832af5b268 /docs/configuration | |
| parent | 7ccbaaffe39aa26dd60e7ae99998fd795b2d80cc (diff) | |
fix: redis sentinel secret missing (#1839)
* fix: redis sentinel secret missing
* refactor: use consts for authentication_backend.file.password errs
* fix: unit test for new default port
* test: cover additional misses
* test: fix windows/linux specific test error
* test: more windows specific tests
* test: remove superfluous url.IsAbs
* test: validator 100% coverage
Diffstat (limited to 'docs/configuration')
| -rw-r--r-- | docs/configuration/secrets.md | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/docs/configuration/secrets.md b/docs/configuration/secrets.md index e9e565582..11c23b1bf 100644 --- a/docs/configuration/secrets.md +++ b/docs/configuration/secrets.md @@ -31,16 +31,17 @@ Here is the list of the environment variables which are considered secrets and can be defined. Any other option defined using an environment variable will not be replaced. -|Configuration Key |Environment Variable | -|:----------------------------------:|:------------------------------------------------:| -|jwt_secret |AUTHELIA_JWT_SECRET_FILE | -|duo_api.secret_key |AUTHELIA_DUO_API_SECRET_KEY_FILE | -|session.secret |AUTHELIA_SESSION_SECRET_FILE | -|session.redis.password |AUTHELIA_SESSION_REDIS_PASSWORD_FILE | -|storage.mysql.password |AUTHELIA_STORAGE_MYSQL_PASSWORD_FILE | -|storage.postgres.password |AUTHELIA_STORAGE_POSTGRES_PASSWORD_FILE | -|notifier.smtp.password |AUTHELIA_NOTIFIER_SMTP_PASSWORD_FILE | -|authentication_backend.ldap.password|AUTHELIA_AUTHENTICATION_BACKEND_LDAP_PASSWORD_FILE| +|Configuration Key |Environment Variable | +|:-----------------------------------------------:|:------------------------------------------------:| +|jwt_secret |AUTHELIA_JWT_SECRET_FILE | +|duo_api.secret_key |AUTHELIA_DUO_API_SECRET_KEY_FILE | +|session.secret |AUTHELIA_SESSION_SECRET_FILE | +|session.redis.password |AUTHELIA_SESSION_REDIS_PASSWORD_FILE | +|session.redis.high_availability.sentinel_password|AUTHELIA_REDIS_HIGH_AVAILABILITY_SENTINEL_PASSWORD| +|storage.mysql.password |AUTHELIA_STORAGE_MYSQL_PASSWORD_FILE | +|storage.postgres.password |AUTHELIA_STORAGE_POSTGRES_PASSWORD_FILE | +|notifier.smtp.password |AUTHELIA_NOTIFIER_SMTP_PASSWORD_FILE | +|authentication_backend.ldap.password |AUTHELIA_AUTHENTICATION_BACKEND_LDAP_PASSWORD_FILE| ## Secrets in configuration file |
