From e8031b1f65218388144948ec7b8a64504c2d285b Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Wed, 17 May 2017 20:24:09 +0000 Subject: [PATCH] trying to get a local non-network postgresql connection --- roles/pagure/upstreamfirst-frontend/templates/pagure.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/pagure/upstreamfirst-frontend/templates/pagure.cfg b/roles/pagure/upstreamfirst-frontend/templates/pagure.cfg index 143fd7426b..5377594b42 100644 --- a/roles/pagure/upstreamfirst-frontend/templates/pagure.cfg +++ b/roles/pagure/upstreamfirst-frontend/templates/pagure.cfg @@ -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']