43 lines
1.8 KiB
Text
43 lines
1.8 KiB
Text
# ==============================================================================
|
|
# REQUIRED - Generate with: openssl rand -base64 36 | tr -d '\n'
|
|
# ==============================================================================
|
|
PG_PASS=
|
|
AUTHENTIK_SECRET_KEY=
|
|
|
|
# ==============================================================================
|
|
# HOST CONFIGURATION
|
|
# Set this to your machine's IP or domain for mobile/network access
|
|
# Examples: localhost, 192.168.1.100, kaboot.example.com
|
|
# ==============================================================================
|
|
KABOOT_HOST=localhost
|
|
KABOOT_FRONTEND_PORT=5173
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL - Authentik Database
|
|
# ==============================================================================
|
|
PG_USER=authentik
|
|
PG_DB=authentik
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL - Ports
|
|
# ==============================================================================
|
|
AUTHENTIK_PORT_HTTP=9000
|
|
AUTHENTIK_PORT_HTTPS=9443
|
|
KABOOT_BACKEND_PORT=3001
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL - Authentik Settings
|
|
# ==============================================================================
|
|
AUTHENTIK_ERROR_REPORTING=false
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL - Authentik Bootstrap (for automated setup)
|
|
# Generate with: openssl rand -base64 36 | tr -d '\n'
|
|
# ==============================================================================
|
|
AUTHENTIK_BOOTSTRAP_PASSWORD=
|
|
AUTHENTIK_BOOTSTRAP_TOKEN=
|
|
|
|
# ==============================================================================
|
|
# OPTIONAL - Logging
|
|
# ==============================================================================
|
|
LOG_REQUESTS=false
|