28 lines
746 B
Bash
28 lines
746 B
Bash
################################################################
|
|
|
|
PUID=${PUID}
|
|
PGID=${PGID}
|
|
TZ=${TZ}
|
|
|
|
SIGNUPS_ALLOWED=false # Set to true for initialising, i.e. for first user signup. After first signup, set to false, then restart vaultwarden stack
|
|
|
|
WEBSOCKET_ENABLED=false
|
|
|
|
#ROCKET_TLS={certs="/ssl/certs/certs.pem",key="/ssl/private/key.pem"} # specific to the Rocket web server
|
|
|
|
ADMIN_TOKEN=${ADMIN_TOKEN}
|
|
|
|
DOMAIN=https://${APPLICATION_NAME}.${DOMAINNAME}
|
|
|
|
# mailer
|
|
SMTP_PORT=25
|
|
SMTP_SECURITY=starttls
|
|
SMTP_HOST_FILE=/run/secrets/smtp_host
|
|
SMTP_FROM_FILE=/run/secrets/smtp_from
|
|
SMTP_USERNAME_FILE=/run/secrets/smtp_username
|
|
SMTP_PASSWORD_FILE=/run/secrets/smtp_password
|
|
|
|
# database
|
|
DB_TYPE=${DB_TYPE}
|
|
DATABASE_URL_FILE=${DATABASE_URL_FILE}
|