diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-10-18 12:17:06 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-10-18 12:18:45 -0400 |
commit | 9c73e20f38e21f68d92f45238cd6314b241dd96e (patch) | |
tree | 33659859b9ffcab6eeae53255de10e2e5eacecf0 | |
parent | 419d2374bfbc1eae562121fde31c1aa0e8a164cb (diff) | |
download | postgresql-9c73e20f38e21f68d92f45238cd6314b241dd96e.tar.gz postgresql-9c73e20f38e21f68d92f45238cd6314b241dd96e.zip |
Change example pg_hba.conf in docs to match altered pg_hba.conf.sample
Peter Eisentraut's recent patch to allow host names in pg_hba.conf
changed the contents of pg_hba.conf.sample
Fujii Masao
-rw-r--r-- | doc/src/sgml/high-availability.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index cc11a1e0efa..1f5ec85ecae 100644 --- a/doc/src/sgml/high-availability.sgml +++ b/doc/src/sgml/high-availability.sgml @@ -812,7 +812,7 @@ archive_cleanup_command = 'pg_archivecleanup /path/to/archive %r' # Allow the user "foo" from host 192.168.1.100 to connect to the primary # as a replication standby if the user's password is correctly supplied. # -# TYPE DATABASE USER CIDR-ADDRESS METHOD +# TYPE DATABASE USER ADDRESS METHOD host replication foo 192.168.1.100/32 md5 </programlisting> </para> |