# 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