fixed a hardcoded host setting in resultsdb
This commit is contained in:
parent
2ae14bac33
commit
c1a0a783e8
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://{{ stg_resultsdb_db_user }}:{{
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{%- if deployment_type == 'local' or deployment_type == 'dev'%}
|
{%- if deployment_type == 'local' or deployment_type == 'dev'%}
|
||||||
SECRET_KEY = '{{ resultsdb_secret_key }}'
|
SECRET_KEY = '{{ resultsdb_secret_key }}'
|
||||||
SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://{{ resultsdb_db_user }}:{{ resultsdb_db_password }}@127.0.0.1:{{ resultsdb_db_port }}/{{ resultsdb_db_name }}'
|
SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://{{ resultsdb_db_user }}:{{ resultsdb_db_password }}@{{ resultsdb_db_host_machine }}:{{ resultsdb_db_port }}/{{ resultsdb_db_name }}'
|
||||||
{% endif %}
|
{% endif %}
|
||||||
FILE_LOGGING = False
|
FILE_LOGGING = False
|
||||||
LOGFILR = '/var/log/resultsdb/resultsdb.log'
|
LOGFILR = '/var/log/resultsdb/resultsdb.log'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue