Remove OIDC integration, use built-in authentication

This commit is contained in:
Andreas Dueren
2025-07-14 21:18:25 -06:00
parent b9f183b5aa
commit 080ff206b2
3 changed files with 4 additions and 7 deletions

View File

@@ -46,11 +46,8 @@ export MAIL_FROM_ADDRESS="${CLOUDRON_MAIL_FROM}"
export STORAGE_DRIVER=local
export STORAGE_LOCAL_PATH="/app/data/uploads"
# OIDC configuration for Cloudron authentication
export OIDC_CLIENT_ID="${CLOUDRON_OIDC_CLIENT_ID}"
export OIDC_CLIENT_SECRET="${CLOUDRON_OIDC_CLIENT_SECRET}"
export OIDC_ISSUER="${CLOUDRON_OIDC_ISSUER}"
export OIDC_REDIRECT_URI="${CLOUDRON_APP_ORIGIN}/api/v1/session/callback"
# Authentication will use built-in email/password system
echo "=> Using built-in email/password authentication"
# File upload configuration
export FILE_UPLOAD_SIZE_LIMIT="50mb"