Initial commit
This commit is contained in:
commit
c611a53558
4 changed files with 25 additions and 0 deletions
8
templates/pg_hba.conf.j2
Normal file
8
templates/pg_hba.conf.j2
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{% for item in postgresql.allowed_hosts %}
|
||||
{{ item.type | default('host') }} {{ item.database | default('all') }} {{ item.user | default('all') }} {{ item.auth | default('md5') }}
|
||||
{% endfor %}
|
||||
|
||||
local all postgres peer
|
||||
local all all peer
|
||||
host all all 127.0.0.1/32 md5
|
||||
host all all ::1/128 md5
|
||||
Loading…
Add table
Add a link
Reference in a new issue