forked from coop-cloud/vaultwarden
By default, the config options provided in the template fail because $COMPOSE_FILE is not set, leading to an error `[abra recipe path] is a directory` when running `abra app deploy`. This is fixed by setting `$COMPOSE_FILE` to `compose.yml`
27 lines
510 B
Plaintext
27 lines
510 B
Plaintext
TYPE=vaultwarden
|
|
|
|
DOMAIN=vaultwarden.example.com
|
|
LETS_ENCRYPT_ENV=production
|
|
|
|
COMPOSE_FILE="compose.yml"
|
|
|
|
WEBSOCKET_ENABLED=true
|
|
SIGNUPS_ALLOWED=true
|
|
|
|
USE_SYSLOG=true
|
|
EXTENDED_LOGGING=true
|
|
LOG_FILE=/data/vaultwarden.log
|
|
LOG_LEVEL=warn
|
|
|
|
SECRET_ADMIN_TOKEN_VERSION=v1 # length=48
|
|
|
|
|
|
## SMTP settings
|
|
#COMPOSE_FILE="$COMPOSE_FILE:compose.smtp.yml"
|
|
#SECRET_SMTP_PASSWORD_VERSION=v1
|
|
#SMTP_FROM=noreply@example.com
|
|
#SMTP_USERNAME=noreply@example.com
|
|
#SMTP_HOST=mail.example.com
|
|
#SMTP_PORT=587
|
|
#SMTP_SECURITY=starttls
|