Initial commit
This commit is contained in:
parent
06e8243445
commit
1036a8a656
28 changed files with 67 additions and 1020 deletions
|
|
@ -1,12 +1,15 @@
|
|||
POSTGRES_HOST="{{ pgbouncer_listen_address }}"
|
||||
POSTGRES_PORT="{{ pgbouncer_port }}"
|
||||
POSTGRES_NAME="{{ pgbouncer_name }}"
|
||||
POSTGRES_USER="{{ pgbouncer_user }}"
|
||||
POSTGRES_PASSWORD="{{ pgbouncer_password }}"
|
||||
POSTGRES_HOST="{{ postgres_host }}"
|
||||
POSTGRES_PORT="{{ postgres_port }}"
|
||||
POSTGRES_DB="{{ postgres_db }}"
|
||||
POSTGRES_USER="{{ postgres_user }}"
|
||||
POSTGRES_PASSWORD="{{ postgres_password }}"
|
||||
|
||||
DJANGO_SETTINGS_MODULE="{{ django_settings_module }}"
|
||||
DJANGO_SECRET_KEY="{{ django_secret_key }}"
|
||||
|
||||
NGINX_HTTP_PORT="{{ nginx_http_port }}"
|
||||
|
||||
# TODO: setup email configuration
|
||||
EMAIL_HOST="{{ email_host }}"
|
||||
EMAIL_PORT="{{ email_port }}"
|
||||
EMAIL_HOST_USER="{{ email_user }}"
|
||||
|
|
|
|||
Reference in a new issue