Initial commit
This commit is contained in:
31
mgmt/authentik/.env.example
Normal file
31
mgmt/authentik/.env.example
Normal file
@@ -0,0 +1,31 @@
|
||||
DOMAIN_NAME=
|
||||
SUBDOMAIN=
|
||||
|
||||
# Authentik Configuration
|
||||
AUTHENTIK_SECRET_KEY=file:///run/secrets/SECRET_KEY
|
||||
AUTHENTIK_TAG=
|
||||
|
||||
# PostgreSQL Configuration
|
||||
PG_HOST=postgres
|
||||
PG_PORT=5432
|
||||
PG_USER=
|
||||
PG_PASS=file:///run/secrets/DB_PASS
|
||||
PG_DB=
|
||||
|
||||
# Redis Configuration
|
||||
REDIS_HOST=redis
|
||||
REDIS_PORT=6379
|
||||
|
||||
# Optional: Custom ports
|
||||
COMPOSE_PORT_HTTP=9000
|
||||
COMPOSE_PORT_HTTPS=9443
|
||||
|
||||
# Environment Variables for Docker Compose
|
||||
AUTHENTIK_REDIS__HOST=$REDIS_HOST
|
||||
AUTHENTIK_REDIS__PORT=$REDIS_PORT
|
||||
AUTHENTIK_POSTGRESQL__HOST=$PG_HOST
|
||||
AUTHENTIK_POSTGRESQL__PORT=$PG_PORT
|
||||
AUTHENTIK_POSTGRESQL__USER=$PG_USER
|
||||
AUTHENTIK_POSTGRESQL__NAME=$PG_DB
|
||||
AUTHENTIK_POSTGRESQL__PASSWORD=$PG_PASS
|
||||
AUTHENTIK_HOST_BROWSER="https://$SUBDOMAIN.$DOMAIN_NAME"
|
||||
Reference in New Issue
Block a user