17 lines
375 B
Bash
17 lines
375 B
Bash
# Application Configuration
|
|
PORT=17000
|
|
DATABASE_URL=postgresql://mohportal:password@db:5432/mohportal
|
|
REDIS_URL=redis:6379
|
|
JWT_SECRET=supersecretkeyforjwt
|
|
|
|
# OIDC Configuration
|
|
OIDC_ISSUER=http://keycloak:8080/realms/master
|
|
OIDC_CLIENT_ID=mohportal-client
|
|
OIDC_CLIENT_SECRET=mohportal-secret
|
|
|
|
# Security Headers
|
|
SECURE_COOKIES=true
|
|
ALLOWED_ORIGINS=*
|
|
|
|
# Logging
|
|
LOG_LEVEL=info |