diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-05-24 21:28:30 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-05-24 21:35:06 +0300 |
commit | f50655900a865d65d17bb79f57f1d8c48b1cb266 (patch) | |
tree | f30573f2c3aa8499df6d85b322c100c15d83b07f /src | |
parent | c8d45152fa04c77370fc16faf0727c0f52739f0a (diff) | |
download | postgresql-f50655900a865d65d17bb79f57f1d8c48b1cb266.tar.gz postgresql-f50655900a865d65d17bb79f57f1d8c48b1cb266.zip |
Add a "local" replication sample entry
Also adjust alignment a bit to distinguish commented out from comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/libpq/pg_hba.conf.sample | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/libpq/pg_hba.conf.sample b/src/backend/libpq/pg_hba.conf.sample index c40696b6b50..f913b9aabbf 100644 --- a/src/backend/libpq/pg_hba.conf.sample +++ b/src/backend/libpq/pg_hba.conf.sample @@ -84,5 +84,6 @@ host all all 127.0.0.1/32 @authmethod@ host all all ::1/128 @authmethod@ # Allow replication connections from localhost, by a user with the # replication privilege. -# host replication @default_username@ 127.0.0.1/32 @authmethod@ -# host replication @default_username@ ::1/128 @authmethod@ +#local replication @default_username@ @authmethod@ +#host replication @default_username@ 127.0.0.1/32 @authmethod@ +#host replication @default_username@ ::1/128 @authmethod@ |