From b954bb5c1454ff9e9b126fb04ad2715e763e7911 Mon Sep 17 00:00:00 2001 From: Elvio Date: Sat, 15 Apr 2023 22:52:13 +0200 Subject: [PATCH] Update config.env --- config.env | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.env b/config.env index 91c47b7..d2410cc 100644 --- a/config.env +++ b/config.env @@ -2,6 +2,8 @@ # A random 32-character secret key used to encrypt user sessions SECRET_PASSWORD= +# Alternatively, you may provide a docker secrets file containing the SECRET_PASSWORD value +SECRET_PASSWORD_FILE= # The base url where this instance is accessible, including the scheme. # Example: https://example.com NEXT_PUBLIC_BASE_URL=http://localhost:3000 @@ -18,8 +20,12 @@ SMTP_PORT=25 SMTP_SECURE=false # The username (if auth is enabled on your SMTP server) SMTP_USER= +# Alternatively, you may provide a docker secrets file containing the SMTP_USER value (if auth is enabled on your SMTP server) +SMTP_USER_FILE= # The password (if auth is enabled on your SMTP server) SMTP_PWD= +# Alternatively, you may provide a docker secrets file containing the SMTP_PWD value (if auth is enabled on your SMTP server) +SMTP_PWD_FILE= # OPTIONAL CONFIG