traefik-authelia/.env.dist
Guillaume "B.B." Van Hemmen f6414a6ae5 #0000 - Add initial project setup with configs, user db, and Docker Compose
This commit adds the foundational setup for the project, including docker-compose.yml, .env.dist, users_database.yml.dist, and Authelia configurations. It also includes the MIT license and a README with installation instructions and usage. The .gitignore file has been updated to exclude sensitive files.
2024-10-10 15:46:06 +02:00

32 lines
1.5 KiB
Text

# Automated Certificate Management Environment (ACME) email address.
# This is used for certificate-related notifications and recovery purposes.
# Example: ACME_EMAIL='your-email@example.com'
ACME_EMAIL='CHANGEME'
# Flag to enable or disable the Traefik dashboard.
# Values: true or false
ENABLE_TRAEFIK_DASHBOARD=true
# Fully Qualified Domain Name (FQDN) for the Traefik dashboard.
# Example: TRAEFIK_DASHBOARD_FQDN='traefik.example.com'
TRAEFIK_DASHBOARD_FQDN='traefik.example.com'
# IPs you can trust to forward headers. Useful if your application is behind Cloudflare, for example.
# Add IPs as a comma-separated list.
TRUSTED_IPS='10.0.0.0/8,172.16.0.0/16,192.168.0.0/16,fc00::/7,173.245.48.0/20,103.21.244.0/22,103.22.200.0/22,103.31.4.0/22,141.101.64.0/18,108.162.192.0/18,190.93.240.0/20,188.114.96.0/20,197.234.240.0/22,198.41.128.0/17,162.158.0.0/15,104.16.0.0/13,104.24.0.0/14,172.64.0.0/13,131.0.72.0/22,2400:cb00::/32,2606:4700::/32,2803:f800::/32,2405:b500::/32,2405:8100::/32,2a06:98c0::/29,2c0f:f248::/32'
# Fully Qualified Domain Name (FQDN) for Authelia, a multi-factor authentication system.
# Example: AUTHELIA_FQDN='auth.example.com'
AUTHELIA_FQDN='auth.example.com'
# Root password for MySQL.
# Note: This is a sensitive value; ensure to change it to a secure password.
MYSQL_ROOT_PASSWORD='CHANGEME'
# The name of the database to be used by Authelia.
# Example: MYSQL_DATABASE='authelia'
MYSQL_DATABASE='authelia'
# Absolute path where MySQL backups will be stored.
# Example: MYSQL_BACKUP_PATH='/some/absolute/path'
MYSQL_BACKUP_PATH='/some/absolute/path'