Skip to content

Commit 170098c

Browse files
committed
PostgreSQL for Ubuntu and Debian
1 parent 1c0e37e commit 170098c

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

install/debian/pg_hba.conf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# "local" is for Unix domain socket connections only
2+
local all all ident
3+
4+
# IPv4 local connections:
5+
host all all 127.0.0.1/32 md5
6+
7+
# IPv6 local connections:
8+
host all all ::1/128 md5
9+
10+
# Others
11+
host all all 0.0.0.0/0 md5

install/ubuntu/pg_hba.conf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# "local" is for Unix domain socket connections only
2+
local all all ident
3+
4+
# IPv4 local connections:
5+
host all all 127.0.0.1/32 md5
6+
7+
# IPv6 local connections:
8+
host all all ::1/128 md5
9+
10+
# Others
11+
host all all 0.0.0.0/0 md5

0 commit comments

Comments
 (0)