duckil_plm/fems-timescaledb/pg_hba.conf

10 lines
556 B
Plaintext
Raw Normal View History

2024-11-19 06:13:58 +09:00
# fems-timescaledb/pg_hba.conf
2024-11-18 19:51:13 +09:00
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
2024-11-21 07:18:07 +09:00
local all all scram-sha-256
2024-11-18 19:51:13 +09:00
# IPv4 local connections:
host all all 127.0.0.1/32 scram-sha-256
# IPv6 local connections:
host all all ::1/128 scram-sha-256
2024-11-21 07:18:07 +09:00
# Allow all connections from anywhere
host all all 0.0.0.0/0 scram-sha-256