mirror of
https://github.com/bewcloud/bewcloud.git
synced 2026-03-11 08:54:49 +00:00
* Expose new `tlsMode` and `tlsVerify` options for connecting to the mail submission agent * Make `tlsVerify` default to opportunistic StartTLS on ports other than 465 to prevent breaking change --------- Co-authored-by: Bruno Bernardino <me@brunobernardino.com>
20 lines
847 B
Text
20 lines
847 B
Text
PORT=8000
|
|
|
|
POSTGRESQL_HOST="postgresql" # docker container name or external hostname/IP
|
|
POSTGRESQL_USER="postgres"
|
|
POSTGRESQL_PASSWORD="fake"
|
|
POSTGRESQL_DBNAME="bewcloud"
|
|
POSTGRESQL_PORT=5432
|
|
POSTGRESQL_CAFILE=""
|
|
|
|
JWT_SECRET="fake"
|
|
PASSWORD_SALT="fake"
|
|
|
|
MFA_KEY="fake" # optional, if you want to enable multi-factor authentication
|
|
MFA_SALT="fake" # optional, if you want to enable multi-factor authentication
|
|
|
|
OIDC_CLIENT_ID="fake" # optional, if you want to enable SSO (Single Sign-On)
|
|
OIDC_CLIENT_SECRET="fake" # optional, if you want to enable SSO (Single Sign-On)
|
|
|
|
#SMTP_USERNAME="" # optional, if you want to use signup email verification or multi-factor with an email service requiring authentication
|
|
#SMTP_PASSWORD="" # optional, if you want to use signup email verification or multi-factor with an email service requiring authentication
|