diff options
author | 2020-06-29 20:49:05 -0700 | |
---|---|---|
committer | 2020-06-29 21:01:37 -0700 | |
commit | d2f4ed93df5e1866c5389aa2a687a6bc3c944b1d (patch) | |
tree | 57c6ec5c869a271273b161ed5ce790ab29ec82fe /miniflux.1 | |
parent | 1d6b0491a75687553fa9c37b68cd5f71aa6fee6e (diff) | |
download | v2-d2f4ed93df5e1866c5389aa2a687a6bc3c944b1d.tar.gz v2-d2f4ed93df5e1866c5389aa2a687a6bc3c944b1d.tar.zst v2-d2f4ed93df5e1866c5389aa2a687a6bc3c944b1d.zip |
Add support for secret keys exposed as a file
Secret keys are often exposed as a file in containerized environments.
Diffstat (limited to '')
-rw-r--r-- | miniflux.1 | 22 |
1 files changed, 20 insertions, 2 deletions
@@ -124,6 +124,9 @@ Postgresql connection parameters\&. .br Default is "user=postgres password=postgres dbname=miniflux2 sslmode=disable"\&. .TP +.B DATABASE_URL_FILE +Path to a secret key exposed as a file, it should contain $DATABASE_URL value\&. +.TP .B DATABASE_MAX_CONNS Maximum number of database connections (default is 20)\&. .TP @@ -188,9 +191,15 @@ OAuth2 provider to use\&. Only google is supported\&. .B OAUTH2_CLIENT_ID OAuth2 client ID\&. .TP +.B OAUTH2_CLIENT_ID_FILE +Path to a secret key exposed as a file, it should contain $OAUTH2_CLIENT_ID value\&. +.TP .B OAUTH2_CLIENT_SECRET OAuth2 client secret\&. .TP +.B OAUTH2_CLIENT_SECRET_FILE +Path to a secret key exposed as a file, it should contain $OAUTH2_CLIENT_SECRET value\&. +.TP .B OAUTH2_REDIRECT_URL OAuth2 redirect URL\&. .TP @@ -207,14 +216,23 @@ Set to 1 to run database migrations\&. Set to 1 to create an admin user from environment variables\&. .TP .B ADMIN_USERNAME -Admin user login, used only if \fBCREATE_ADMIN\fR is enabled\&. +Admin user login, used only if $CREATE_ADMIN is enabled\&. +.TP +.B ADMIN_USERNAME_FILE +Path to a secret key exposed as a file, it should contain $ADMIN_USERNAME value\&. .TP .B ADMIN_PASSWORD -Admin user password, used only if \fBCREATE_ADMIN\fR is enabled\&. +Admin user password, used only if $CREATE_ADMIN is enabled\&. +.TP +.B ADMIN_PASSWORD_FILE +Path to a secret key exposed as a file, it should contain $ADMIN_PASSWORD value\&. .TP .B POCKET_CONSUMER_KEY Pocket consumer API key for all users\&. .TP +.B POCKET_CONSUMER_KEY_FILE +Path to a secret key exposed as a file, it should contain $POCKET_CONSUMER_KEY value\&. +.TP .B PROXY_IMAGES Avoids mixed content warnings for external images: http-only, all, or none\&. .br |