mirror of
https://gitlab.silvrtree.co.uk/martind2000/mqttArchiver.git
synced 2025-01-10 21:45:08 +00:00
27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
# Allow any user on the local system to connect to any database with
|
|
# any database user name using Unix-domain sockets (the default for local
|
|
# connections).
|
|
#
|
|
# TYPE DATABASE USER ADDRESS METHOD
|
|
local all all trust
|
|
|
|
# The same using local loopback TCP/IP connections.
|
|
#
|
|
# TYPE DATABASE USER ADDRESS METHOD
|
|
host all all 127.0.0.1/32 trust
|
|
|
|
# The same as the previous line, but using a separate netmask column
|
|
#
|
|
# TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD
|
|
host all all 127.0.0.1 255.255.255.255 trust
|
|
|
|
# The same over IPv6.
|
|
#
|
|
# TYPE DATABASE USER ADDRESS METHOD
|
|
host all all ::1/128 trust
|
|
|
|
# The same using a host name (would typically cover both IPv4 and IPv6).
|
|
#
|
|
# TYPE DATABASE USER ADDRESS METHOD
|
|
host all all localhost trust
|