-
Notifications
You must be signed in to change notification settings - Fork 3
/
pg_hba.conf
29 lines (25 loc) · 1.27 KB
/
pg_hba.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# PostgreSQL Client Authentication Configuration File
# ===================================================
#
# This configuration file is being managed by the "waferlock" service on this
# machine.
#
# Any edits or changes you make by hand will be undone by waferlock.
#
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all trust
local replication admin trust
# IPv4 local connections:
host all all 127.0.0.1/32 trust
# IPv6 local connections:
host all all ::1/128 trust
# Allow replication connections from localhost, by a user with the
# replication privilege.
host replication admin 127.0.0.1/32 trust
host replication all 127.0.0.1/32 trust
host replication admin ::1/128 trust
# These are disabled while waferlock is in operation
##host replication all 0.0.0.0/0 trust
##host all all 0.0.0.0/0 trust
# Lines below this point are automatically generated by the PgHbaPool