Files
portioner/vaultwarden/stack.env

28 lines
862 B
Bash
Raw Normal View History

# Synology Execution User
PUID=1044
PGID=65538
TZ=America/Toronto
# Vaultwarden Configuration
# Replace with your actual NAS IP/domain and https
DOMAIN=https://vaultwarden.yourdomain.com
# SECURITY: Enable signups to create your initial account, then set this to 'false' inside Portainer
SIGNUPS_ALLOWED=true
# Email Configuration (Optional)
SMTP_HOST=smtp.yourdomain.com
SMTP_FROM=vaultwarden@yourdomain.com
SMTP_SECURITY=starttls
SMTP_PORT=587
SMTP_USERNAME=your_username
SMTP_PASSWORD=your_password
# Admin Panel Token (Optional)
# IMPORTANT: Do not use plain text! Generate a secure hash by running this command via SSH on your NAS:
# docker run --rm -it vaultwarden/server vaultwarden hash
# It will prompt for a password and output a hash. Paste the full hash below.
# Example:
# ADMIN_TOKEN=$$argon2id$$v=19...
ADMIN_TOKEN=your_generated_admin_token