Replace hardcoded evosync.ru with a DOMAIN variable read from .env. nginx.conf is now generated from nginx.conf.template via envsubst; init-letsencrypt.sh reads DOMAIN from .env and fails loudly if unset. README documents the new variable and first-deploy TLS workflow. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
292 B
Plaintext
19 lines
292 B
Plaintext
# Database
|
|
DB_ROOT_PASSWORD=rootpassword
|
|
DB_NAME=evosync
|
|
DB_USER=evosync
|
|
DB_PASSWORD=evosync
|
|
|
|
# App
|
|
SECRET_KEY=change-me-in-production
|
|
DOMAIN=yourdomain.com
|
|
BASE_URL=https://${DOMAIN}
|
|
|
|
# Evotor
|
|
EVOTOR_APP_ID=
|
|
EVOTOR_WEBHOOK_SECRET=
|
|
|
|
# Celery Flower
|
|
FLOWER_USER=admin
|
|
FLOWER_PASSWORD=changeme
|