1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Remove pg_hba.conf 'local' line for Win32 because it doesn't support unix domain

connections.

Andrew Dunstan
This commit is contained in:
Bruce Momjian
2004-10-06 09:01:18 +00:00
parent 513e89b44b
commit c93872d891
2 changed files with 42 additions and 4 deletions

View File

@@ -60,8 +60,9 @@
# TYPE DATABASE USER CIDR-ADDRESS METHOD
local all all @authmethod@
# IPv4-style local connections:
@remove-line-for-win32@# "local" is for Unix domain socket connections only
@remove-line-for-win32@local all all @authmethod@
# IPv4 local connections:
host all all 127.0.0.1/32 @authmethod@
# IPv6-style local connections:
# IPv6 local connections:
host all all ::1/128 @authmethod@