mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 01:30:25 +00:00
Enable replication connections by default in pg_hba.conf
Upstream commit:
- be37c2120a
- 9 Mar 2017
- master REL_11_BETA1 REL_10_4 ... REL_10_BETA1
This commit is contained in:
parent
d9c071a547
commit
311cb3d187
1 changed files with 5 additions and 0 deletions
|
@ -47,6 +47,11 @@ postgres:
|
|||
- ['host', 'all', 'all', '127.0.0.1/32', 'md5']
|
||||
# IPv6 local connections:
|
||||
- ['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']
|
||||
|
||||
pg_ident.conf: salt://postgres/templates/pg_ident.conf.j2
|
||||
identity_map: []
|
||||
|
|
Loading…
Add table
Reference in a new issue