mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-05-12 02:29:44 +08:00
30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
# PostgreSQL Client Authentication Configuration File
|
||
# ===========================================
|
||
#
|
||
# Refer to the "Client Authentication" section in the PostgreSQL
|
||
# documentation for a complete description of this file.
|
||
|
||
# TYPE DATABASE USER ADDRESS METHOD
|
||
|
||
# "local" is for Unix domain socket connections only
|
||
local all all trust
|
||
|
||
# IPv4 local connections:
|
||
host all all 127.0.0.1/32 md5
|
||
host all all ::1/128 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 trust
|
||
host replication all 127.0.0.1/32 md5
|
||
host replication all ::1/128 md5
|
||
|
||
# 允许所有IPv4连接(用于Docker容器内部通信)
|
||
host all all 0.0.0.0/0 md5
|
||
|
||
# 允许所有IPv6连接
|
||
host all all ::/0 md5
|