-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnginx.env.sample
More file actions
26 lines (23 loc) · 779 Bytes
/
nginx.env.sample
File metadata and controls
26 lines (23 loc) · 779 Bytes
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
#
# These are the full paths to the certificate and key
# used by NGINX. The paths should match what was used
# for the NGINX_CERTS_PATH in you .env file.
#
SSL_CERT='/usr/share/nginx/certs/my_cert.crt'
SSL_KEY='/usr/share/nginx/certs/my_key.key'
SSL_CHAIN=''
#
# SERVER_NAME will be used as the server_name directive
# in the NGINX cofiguration.
#
SERVER_NAME=''
#
# These are the full paths to the your static and resources
# directories in your NGINX Docker container. This allows for
# serving the files from different locations in development
# and production.
#
DEV_STATIC_PATH='/usr/share/nginx/django/static'
DEV_RESOURCES_PATH='/usr/share/nginx/django/resources'
PROD_STATIC_PATH='/usr/share/nginx/django/static'
PROD_RESOURCE_PATH='/usr/share/nginx/django/resources'