23 lines
590 B
Bash
23 lines
590 B
Bash
# Production only — copy to infra/docker/.env.prod (do not commit).
|
|
# Used for scheduled releases: db:restore:prod, docker:publish, TrueNAS gallery-web.
|
|
# Day-to-day development uses root .env → gallery_dev.
|
|
|
|
DB_HOST=192.168.10.122
|
|
DB_PORT=5432
|
|
DB_USER=gallery
|
|
DB_PASSWORD=YOUR_POSTGRES_PASSWORD
|
|
DB_NAME=gallery_prod
|
|
|
|
PORT=5173
|
|
HOST=0.0.0.0
|
|
APP_ENV=prod
|
|
IMAGE_TAG=latest
|
|
PUBLIC_URL=https://gallery.mysuperlab.netcraze.pro
|
|
TRUST_PROXY=true
|
|
IMAGE_DIR=/app/data/images
|
|
|
|
SESSION_SECRET=change-me-to-a-long-random-string
|
|
SESSION_COOKIE_SECURE=true
|
|
CURATOR_USERNAME=curator
|
|
CURATOR_PASSWORD=
|