This commit is contained in:
2025-12-22 14:47:25 -05:00
parent d4e859f9a7
commit 00e9eb8986
81 changed files with 13933 additions and 0 deletions

20
.env.example Normal file
View File

@@ -0,0 +1,20 @@
# Authelia OIDC Configuration
# REQUIRED: Set these values to match your Authelia instance
# Authelia issuer URL (e.g., https://auth.example.com)
OIDC_ISSUER=
# OIDC client ID (must match the client configured in Authelia)
OIDC_CLIENT_ID=trivia-app
# OIDC client secret (generated when configuring the client in Authelia)
OIDC_CLIENT_SECRET=
# OAuth redirect URI (adjust if deploying to production)
OIDC_REDIRECT_URI=http://localhost:5001/api/auth/callback
# Frontend URL for callbacks
FRONTEND_URL=http://localhost:3000
# Cookie security (set to 'true' in production with HTTPS)
SESSION_COOKIE_SECURE=false