20 lines
402 B
Plaintext
20 lines
402 B
Plaintext
#NGINX
|
|
NGINX_HOSTNAME=localhost
|
|
|
|
# Django
|
|
DJANGO_SETTINGS_MODULE=website.settings
|
|
DJANGO_SECRET_KEY=CWHZCAZBNV57tDkwGHJwTUu3PCSnGG45
|
|
DEBUG=TRUE
|
|
#ALLOWED_HOSTS=localhost
|
|
|
|
# Database (PostgreSQL)
|
|
POSTGRES_USER=test_user
|
|
POSTGRES_PASSWORD=test_password
|
|
POSTGRES_HOST=db
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_DBNAME=test_dbname # == POSTGRES_DB
|
|
POSTGRES_DB=test_db
|
|
|
|
# Gunicorn
|
|
GUNICORN_WORKERS=3
|
|
GUNICORN_TIMEOUT=120 |