sso-core/.env.example

45 lines
1.0 KiB
Plaintext
Raw Normal View History

# Front-end public URL, without leading slash
2024-05-20 17:25:46 +00:00
PUBLIC_URL=http://localhost:5173
# Site name, displayed on the UI and in emails
2024-05-20 17:25:46 +00:00
PUBLIC_SITE_NAME=Amanita SSO
# Database connection (mysql)
2024-05-20 17:25:46 +00:00
DATABASE_HOST=localhost
DATABASE_DB=icyauth
DATABASE_USER=icyauth
DATABASE_PASS=icyauth
# Secret keys for sessions and challenges
# These keys should be rotated as part of regular maintenance
2024-05-20 17:25:46 +00:00
SESSION_SECRET=32 char key
CHALLENGE_SECRET=64 char key
2024-06-06 17:27:38 +00:00
# Set "Secure" flag on the cookie
SESSION_SECURE=true
# OpenID Connect JWT (ID token) settings
# Private keys for JWTs are stored as files in the private directory
2024-05-20 17:25:46 +00:00
JWT_ALGORITHM=RS256
2024-06-04 17:36:10 +00:00
JWT_EXPIRATION=7d
2024-05-20 17:25:46 +00:00
JWT_ISSUER=http://localhost:5173
# SMTP settings
2024-05-20 17:25:46 +00:00
EMAIL_ENABLED=true
EMAIL_FROM=no-reply@icynet.eu
EMAIL_SMTP_HOST=mail.icynet.eu
EMAIL_SMTP_PORT=587
EMAIL_SMTP_SECURE=false
EMAIL_SMTP_USER=
EMAIL_SMTP_PASS=
# Enable new account registrations
2024-05-20 17:25:46 +00:00
REGISTRATIONS=true
# Trust the first proxy to give us the user's real IP
2024-05-21 16:16:15 +00:00
ADDRESS_HEADER=X-Forwarded-For
XFF_DEPTH=1
# Run database migrations automatically on startup
2024-06-01 11:42:08 +00:00
AUTO_MIGRATE=true