From: Tatsuo Ishii Date: Fri, 22 May 2020 01:58:48 +0000 (+0900) Subject: Add mention about hostssl/hostnossl to pool_hba.conf sample file. X-Git-Tag: V3_7_15~39 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=52d6e2dca6db2d7c1be8f4d7607e8567bef82580;p=pgpool2.git Add mention about hostssl/hostnossl to pool_hba.conf sample file. Although hostssl/hostnossl are supported, pool_hba.conf comment did not mention about it. --- diff --git a/src/sample/pool_hba.conf.sample b/src/sample/pool_hba.conf.sample index 6e37e2736..c616e1fef 100644 --- a/src/sample/pool_hba.conf.sample +++ b/src/sample/pool_hba.conf.sample @@ -10,12 +10,16 @@ # can access. Records take one of these forms: # # local DATABASE USER METHOD [OPTION] -# host DATABASE USER CIDR-ADDRESS METHOD [OPTION] +# host DATABASE USER ADDRESS METHOD [OPTIONS] +# hostssl DATABASE USER ADDRESS METHOD [OPTIONS] +# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS] # # (The uppercase items must be replaced by actual values.) # # The first field is the connection type: "local" is a Unix-domain # socket, "host" is either a plain or SSL-encrypted TCP/IP socket. +# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a +# plain TCP/IP socket. # # DATABASE can be "all", "sameuser", a database name, or a comma-separated # list thereof. Note that "samegroup" like in PostgreSQL's pg_hba.conf