diff options
| author | RATDAD <lambda@disroot.org> | 2026-03-14 19:09:51 -0400 |
|---|---|---|
| committer | RATDAD <lambda@disroot.org> | 2026-03-14 19:09:51 -0400 |
| commit | c4370a17dec7c1090c92efc195f6bd1188ba9bde (patch) | |
| tree | 9e421f1f16ea409865a371adb4902e604ec5f299 /templates/pim.env.template | |
| parent | 2578d12ea47d10130472a845244e4aaac48897cb (diff) | |
| download | rd-cloud-dev.tar.gz rd-cloud-dev.tar.bz2 rd-cloud-dev.zip | |
refactor: alter the position of environment files and container routingdev
Diffstat (limited to 'templates/pim.env.template')
| -rw-r--r-- | templates/pim.env.template | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/templates/pim.env.template b/templates/pim.env.template new file mode 100644 index 0000000..d99e720 --- /dev/null +++ b/templates/pim.env.template @@ -0,0 +1,38 @@ +# GENERAL +APP_ENV=dev # or dev +CALDAV_ENABLED=true +CARDDAV_ENABLED=true +WEBDAV_ENABLED=false +PUBLIC_CALENDARS_ENABLED=true +BIRTHDAY_REMINDER_OFFSET=PT0H +APP_TIMEZONE= +LOG_FILE_PATH="%kernel.logs_dir%/%kernel.environment%.log" + +# DB +DB_DRIVER= +DB_HOST= +DB_PORT= +DB_DATABASE= +DB_USER= +DB_PASSWORD= +DATABASE_URL=${DB_DRIVER}://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_DATABASE}?serverVersion=15&charset=UTF-8 + +# ADMIN +ADMIN_LOGIN= +ADMIN_PASSWORD= + +# WebDAV +WEBDAV_TMP_DIR=/webdav/tmp +WEBDAV_PUBLIC_DIR=/webdav/public +WEBDAV_HOMES_DIR= + +# MAIL +INVITE_FROM_ADDRESS=no-reply@example.org +MAIL_HOST=smtp.myprovider.com +MAIL_PORT=587 +MAIL_USERNAME=userdav +MAIL_PASSWORD=test +MAILER_DSN=smtp://${MAIL_USERNAME}:${MAIL_PASSWORD}@${MAIL_HOST}:${MAIL_PORT} + +# Trust the immediate proxy for X-Forwarded-* headers including HTTPS detection +SYMFONY_TRUSTED_PROXIES=REMOTE_ADDR |
