Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
- Rename project name across code, configs, docs, dev/prod infra - Dev: DOCKER_APP_NAME + POSTGRES_DB switched to starseed, containers become php-starseed-fpm / nginx-starseed / starseed-db-1 - Dev: mount nginx.conf on default.conf instead of starseed.conf to avoid alphabetical-order clash with image's default site - Makefile: export CURRENT_UID/CURRENT_GID at top level so docker compose builds (db-reset etc.) get them - Prod: image registry path, container_name, volumes, vhost server_name + paths, DATABASE_URL, CORS, CI workflow - Add doc/prompt-rename-prod.md with the migration runbook for the prod server (DB rename, FS move, vhost, Let's Encrypt)
13 lines
334 B
Plaintext
13 lines
334 B
Plaintext
APP_ENV=prod
|
|
APP_DEBUG=0
|
|
APP_SECRET=CHANGE_ME_IN_PRODUCTION
|
|
|
|
DATABASE_URL="postgresql://starseed:CHANGE_ME@host.docker.internal:5432/starseed_prod?serverVersion=16&charset=utf8"
|
|
|
|
JWT_PASSPHRASE=CHANGE_ME_IN_PRODUCTION
|
|
JWT_COOKIE_SECURE=1
|
|
JWT_TOKEN_TTL=86400
|
|
JWT_COOKIE_TTL=86400
|
|
|
|
CORS_ALLOW_ORIGIN='^https://starseed\.malio-dev\.fr$'
|