forked from illbnm/homelab-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 936 Bytes
/
Copy path.env.example
File metadata and controls
30 lines (24 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# =============================================================================
# SSO Stack — Environment Variables
# Copy to .env and fill ALL required values before running.
# =============================================================================
# Shared domain (from root .env)
DOMAIN=yourdomain.com
TZ=Asia/Shanghai
# Authentik domain (default: auth.yourdomain.com)
AUTHENTIK_DOMAIN=auth.${DOMAIN}
# REQUIRED: Generate with: openssl rand -base64 32
AUTHENTIK_SECRET_KEY=
# REQUIRED: Strong random passwords
AUTHENTIK_POSTGRES_PASSWORD=
AUTHENTIK_REDIS_PASSWORD=
# Bootstrap admin account (created on first boot)
AUTHENTIK_BOOTSTRAP_EMAIL=admin@yourdomain.com
AUTHENTIK_BOOTSTRAP_PASSWORD=
# OAuth2 client credentials — filled by scripts/setup-authentik.sh
GRAFANA_OAUTH_CLIENT_ID=
GRAFANA_OAUTH_CLIENT_SECRET=
GITEA_OAUTH_CLIENT_ID=
GITEA_OAUTH_CLIENT_SECRET=
OUTLINE_OAUTH_CLIENT_ID=
OUTLINE_OAUTH_CLIENT_SECRET=