27 lines
618 B
Bash
27 lines
618 B
Bash
# =================================================================
|
|
# VAULT Stack Configuration
|
|
# =================================================================
|
|
|
|
# Stack identification
|
|
COMPOSE_PROJECT_NAME=vault
|
|
|
|
# Docker image
|
|
DOCKER_IMAGE=vaultwarden/server:latest
|
|
|
|
# Traefik configuration
|
|
TRAEFIK_ENABLED=true
|
|
TRAEFIK_HOST=${TRAEFIK_HOST_VAULT}
|
|
|
|
# Application port
|
|
APP_PORT=80
|
|
|
|
# Additional configuration
|
|
WEBSOCKET_ENABLED=true
|
|
SIGNUPS_ALLOWED=false
|
|
SMTP_SECURITY=force_tls
|
|
SMTP_TIMEOUT=15
|
|
DOMAIN=https://vault.pivoine.art
|
|
|
|
# NOTE: Secrets are stored in root secrets.env file
|
|
# Available secrets for this stack:
|