From: Peter Palfrader Date: Sun, 29 Sep 2019 16:42:19 +0000 (+0200) Subject: Do not enable replication from localhost X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fdsa-puppet.git;a=commitdiff_plain;h=c43bec4c2fa69c7eb22711ad90f71643803ef040 Do not enable replication from localhost --- diff --git a/modules/postgres/templates/cluster/pg_hba.conf-head.erb b/modules/postgres/templates/cluster/pg_hba.conf-head.erb index f899cf1da..d84d7d135 100644 --- a/modules/postgres/templates/cluster/pg_hba.conf-head.erb +++ b/modules/postgres/templates/cluster/pg_hba.conf-head.erb @@ -15,8 +15,8 @@ host all all 127.0.0.1/32 md5 host all all ::1/128 md5 # Allow replication connections from localhost, by a user with the # replication privilege. -local replication all peer -host replication all 127.0.0.1/32 md5 -host replication all ::1/128 md5 +#local replication all peer +#host replication all 127.0.0.1/32 md5 +#host replication all ::1/128 md5 ######################################