40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
# .env.example
|
|
# Copy this file to .env and update the values below
|
|
|
|
## Domain / Timezone
|
|
DOMAIN=your-domain.com
|
|
TZ=Your/Timezone
|
|
|
|
## ACME (Let's Encrypt)
|
|
# Your email address for Let's Encrypt certificate notifications
|
|
ACME_EMAIL=admin@your-domain.com
|
|
|
|
## Authelia Configuration
|
|
# Generate with: openssl rand -hex 32
|
|
AUTHELIA_JWT_SECRET=your_jwt_secret_here_at_least_32_chars_generate_this
|
|
AUTHELIA_SESSION_SECRET=your_session_secret_here_at_least_32_chars_generate_this
|
|
AUTHELIA_STORAGE_ENCRYPTION_KEY=your_storage_encryption_key_32+_chars
|
|
|
|
# SMTP Configuration for Authelia (optional)
|
|
AUTHELIA_SMTP_HOST=smtp.gmail.com
|
|
AUTHELIA_SMTP_PORT=587
|
|
AUTHELIA_SMTP_USER=your_email@gmail.com
|
|
AUTHELIA_SMTP_PASS=your_app_password
|
|
AUTHELIA_SMTP_FROM=Authelia <noreply@your-domain.com>
|
|
|
|
## Umami (PostgreSQL)
|
|
# Database user for Umami analytics
|
|
UMAMI_DB_USER=umami
|
|
# Strong password for Umami database
|
|
UMAMI_DB_PASS=your_strong_database_password
|
|
# Database name for Umami
|
|
UMAMI_DB_NAME=umami
|
|
# Random 64-character secret for Umami app security
|
|
UMAMI_APP_SECRET=your_64_character_random_secret_here
|
|
|
|
## Grafana
|
|
# Admin username for Grafana dashboard
|
|
GRAFANA_ADMIN_USER=admin
|
|
# Strong password for Grafana admin user
|
|
GRAFANA_ADMIN_PASS=your_strong_grafana_password
|