Collection of cookbooks for Podman Quadlets
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

41 lines
1.1 KiB

# Public URL where Vaultwarden will be accessible
DOMAIN=http://vaultwarden
# Listening address and port
ROCKET_ADDRESS=127.0.0.1
ROCKET_PORT=8080
# Database configuration
DATABASE_URL=postgresql://vaultwarden:vaultwarden@localhost:5432/vaultwarden
# Generated using the following command:
# echo -n 'Ch4ng3M3!' | argon2 "$(openssl rand -base64 32)" -e -id -k 65540 -t 3 -p 4
ADMIN_TOKEN=$argon2id$v=19$m=65540,t=3,p=4$cnV0dFVjODhCcDRyR2E1azNRM2NNTDAvamxNUzJpdklrVkpaRmQ5Sm95WT0$mS2zqCE1fTOYSEg0q8pffD2C/6cFctTZQXVxlZ5Of8E
# Features
SIGNUPS_ALLOWED=true
INVITATIONS_ALLOWED=false
# Email (SMTP) Configuration
#SMTP_HOST=smtp.gmail.com
#SMTP_FROM=
#SMTP_PORT=587
#SMTP_SECURITY=starttls
#SMTP_USERNAME=
#SMTP_PASSWORD=
# Enable Mobile Push Notifications
# Get a key from https://bitwarden.com/host/
#PUSH_ENABLED=true
#PUSH_INSTALLATION_ID=
#PUSH_INSTALLATION_KEY=
#PUSH_RELAY_URI=https://api.bitwarden.eu
#PUSH_IDENTITY_URI=https://identity.bitwarden.eu
# Logging Configuration
LOG_LEVEL=info
EXTENDED_LOGGING=true
# Performance Configuration
#ROCKET_WORKERS=10
#ROCKET_LIMITS={json=10485760}