-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.dist
72 lines (59 loc) · 2.16 KB
/
env.dist
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Version of Certbot you want to use to generate and renew
# TLS certificates.
# See: https://github.com/certbot/certbot
CERTBOT_VERSION=1.0.0
# Whether or not to run the server in development mode.
# Options: DEVELOPMENT = 0|1
DEVELOPMENT=1
# Name of the webserver you're running. Used to determine
# what TLS certificates you should generate.
SERVER_NAME=play.lawliet.ai
# Hostname that the webserver is running on. Used by the
# Nginx proxy to determine the upstream server from which
# to serve the site. If you're using docker-compose, this
# should probably be set to "webserver".
SITE_SERVER=webserver
#--------------------------------------------------
# Django params
#--------------------------------------------------
# Secret key used by Django for generating hashes. Should
# be a random value.
DJANGO_SECRET_KEY=
#--------------------------------------------------
# Database params
#--------------------------------------------------
# Database engine to use
# Options: mysql|sqlite3
DATABASE_ENGINE=mysql
# Parameters to pass to the MariaDB container on startup.
# Only applicable if DATABASE_ENGINE=mysql
# See: hub.docker.com/_/mariadb
MYSQL_RANDOM_ROOT_PASSWORD=
MYSQL_DATABASE=lawliet
MYSQL_USER=lawliet
MYSQL_PASSWORD=
# Host that the MySQL database is located at. If you're
# using docker-compose then this should probably be
# set to "database".
DATABASE_HOST=database
#--------------------------------------------------
# Proxy params
#--------------------------------------------------
# REDIRECT_HTTP_TO_HTTPS = no|yes|301|302
#
# Whether or not to redirect HTTP traffic to HTTPS.
#
# If "no" is selected, then the Nginx proxy will serve the site over HTTP on
# port 80. If "yes" or "302" is selected, then it will 302 (temporary) redirect
# traffic to port 443. If "301" is selected, it will 301 (permanent) redirect
# traffic to port 443. Only select "301" if you're sure that you don't want to
# make the site accessible over HTTP in the future.
REDIRECT_HTTP_TO_HTTPS="no"
#--------------------------------------------------
# Email params
#--------------------------------------------------
EMAIL_HOST=
EMAIL_HOST_USER=
EMAIL_HOST_PASSWORD=
EMAIL_PORT=587
EMAIL_USE_TLS=1