Phase 1 done
This commit is contained in:
parent
5cdafc7a4d
commit
9a3fc97a34
14 changed files with 496 additions and 33 deletions
34
.env.example
Normal file
34
.env.example
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# ==============================================================================
|
||||
# REQUIRED - Generate with: openssl rand -base64 36 | tr -d '\n'
|
||||
# ==============================================================================
|
||||
PG_PASS=
|
||||
AUTHENTIK_SECRET_KEY=
|
||||
|
||||
# ==============================================================================
|
||||
# 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 - OIDC (Override if using custom domain)
|
||||
# ==============================================================================
|
||||
OIDC_ISSUER=http://localhost:9000/application/o/kaboot/
|
||||
OIDC_JWKS_URI=http://localhost:9000/application/o/kaboot/jwks/
|
||||
|
||||
# ==============================================================================
|
||||
# OPTIONAL - CORS (Frontend origin for backend API)
|
||||
# ==============================================================================
|
||||
CORS_ORIGIN=http://localhost:5173
|
||||
Loading…
Add table
Add a link
Reference in a new issue