사용자 도구

사이트 도구


postgresql:configuration:pg_hba

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

postgresql:configuration:pg_hba [2022/07/22 12:28] – 만듦 taekgupostgresql:configuration:pg_hba [2025/04/15 10:05] (현재) – 바깥 편집 127.0.0.1
줄 1: 줄 1:
 +====== pg_hba.conf ======
 +===== PostgreSQL Client Authentication Configuration File =====
  
 +<code>
 +# 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            trust
 +host    all             all             172.30.1.1/24           trust
 +# IPv6 local connections:
 +host    all             all             ::1/128                 trust
 +# Allow replication connections from localhost, by a user with the
 +# replication privilege.
 +local   replication     all                                     trust
 +host    replication     all             127.0.0.1/32            trust
 +host    replication     all             172.30.1.1/24           trust
 +host    replication     all             ::1/128                 trust
 +</code>