nixos/postgresql: Change local auth method from ident to peer (#80179)

This commit is contained in:
gtgteq 2020-02-16 06:55:35 +09:00 committed by GitHub
parent 9b57092c19
commit c359c6959a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -251,7 +251,7 @@ in
services.postgresql.authentication = mkAfter
''
# Generated file; do not edit!
local all all ident
local all all peer
host all all 127.0.0.1/32 md5
host all all ::1/128 md5
'';