33 lines
613 B
Bash
33 lines
613 B
Bash
#######################################
|
|
### Docker
|
|
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_DB=postgres
|
|
#POSTGRES_PASSWORD=
|
|
|
|
DJANGO_ENV=prod
|
|
|
|
#######################################
|
|
### Django
|
|
|
|
# Security
|
|
DEBUG=False
|
|
#SECRET_KEY=
|
|
ALLOWED_HOSTS=taal-academie.arree.bzh
|
|
CSRF_TRUSTED_ORIGINS=https://taal-academie.arree.bzh
|
|
|
|
# Database
|
|
DATABASE_NAME=postgres
|
|
DATABASE_USER=postgres
|
|
#DATABASE_PASS=
|
|
DATABASE_HOST=taal-academiearreebzh_postgres
|
|
DATABASE_PORT=5432
|
|
|
|
# SMTP server
|
|
EMAIL_HOST=smtpauth.infini.fr
|
|
EMAIL_HOST_USER=taal-academie@arree.bzh
|
|
#EMAIL_HOST_PASSWORD=
|
|
EMAIL_PORT=587
|
|
EMAIL_USE_SSL=False
|
|
EMAIL_USE_TLS=False
|