trying to get a local non-network postgresql connection

This commit is contained in:
Tim Flink 2017-05-17 20:24:09 +00:00
parent 4bda987973
commit e8031b1f65

View file

@ -23,7 +23,8 @@ PREFERRED_URL_SCHEME='https'
### url to the database server:
#DB_URL=mysql://user:pass@host/db_name
#DB_URL=postgres://user:pass@host/db_name
DB_URL = 'postgresql://{{ new_pagure_db_user }}:{{ new_pagure_db_pass }}@{{ new_pagure_db_host }}/{{ new_pagure_db_name }}'
# removing host for local postgres connection
DB_URL = 'postgresql://{{ new_pagure_db_user }}:{{ new_pagure_db_pass }}/{{ new_pagure_db_name }}'
### The FAS group in which the admin of pagure are
ADMIN_GROUP = ['sysadmin-main']