22 lines
559 B
Bash
22 lines
559 B
Bash
# Copy to .env before docker compose / Dokploy deploy
|
|
|
|
POSTGRES_DB=vpn_admin
|
|
POSTGRES_USER=vpn_admin
|
|
POSTGRES_PASSWORD=change_me_strong_password
|
|
|
|
# Required: random 32+ bytes (hex or base64)
|
|
APP_SESSION_SECRET=change_me_to_a_long_random_secret_at_least_32_chars
|
|
|
|
# Public URL prefix if behind subpath (empty = domain root). Example: vpn
|
|
APP_BASE_URL=
|
|
|
|
# Max seconds for Amnezia panel HTTP inside one request
|
|
APP_HTTP_BUDGET_SEC=52
|
|
|
|
# Optional overrides (also configurable in admin UI)
|
|
AMNEZIA_PANEL_URL=
|
|
AMNEZIA_API_TOKEN=
|
|
AMNEZIA_SERVER_LABELS_JSON=
|
|
|
|
TZ=UTC
|