Update postgres.md

This commit is contained in:
karthik mv 2023-05-02 00:49:01 +05:30 committed by GitHub
parent fb7d0550fe
commit b94d63febe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
typical conf file for pg_hba.conf for dev work.
```
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
@ -13,4 +13,5 @@ host all all ::1/128 md5
# replication privilege.
local replication all peer
host replication all 127.0.0.1/32 ident
host replication all ::1/128 ident
host replication all ::1/128 ident
```