-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.prod
43 lines (35 loc) · 1.08 KB
/
.env.prod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# General
ENV_NAME=prod
DOMAIN_NAME=projetosd.com.br
# debug service
https://testdriven.io/blog/django-debugging-vs-code/
RUN_MAIN=0
# Web (Django)
DEBUG=1
# SECRET_KEY=
IS_PRODUCTION=1
# Postgres application user credentials
PG_APP_USER=projetosd
# Postgres superuser credentials
POSTGRES_USER=postgres
# Pgadmin administrator credentials
# SSL service
SSL_CA_DOMAIN=https://acme-v02.api.letsencrypt.org
#SSL_CA_DOMAIN=https://acme-staging-v02.api.letsencrypt.org
# TODO add notifier credentials
SSL_RELOAD_CMD=echo 'SSL certificates built! Reloading...'
# SSL_RELOAD_CMD=/usr/local/bin/notify.sh reloaded
# SSL_NOTIFIER_ADDRESS=
# SSL_NOTIFIER_USERNAME=
# SSL_NOTIFIER_PASSWORD=
# Data directories on host and available to containers
PG_DIR=/mnt/data/pgdata
BACKUP_DIR=/mnt/data/backups
SSL_DIR=/mnt/data/ssl
SECRETS_DIR=/secrets
SRC_DIR=/home/jairson/projetosd