aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-12-24 04:44:03 +0000
committerBruce Momjian <bruce@momjian.us>2001-12-24 04:44:03 +0000
commit2fcc911750c0de13c4f2dad7290d0fb458b0ba3c (patch)
treec4060950a10eb530c24b7d3bce3ed5c4c63c1402 /src
parent6896693d6404f39c6b98e8d07e6c28fccdd534f7 (diff)
downloadpostgresql-2fcc911750c0de13c4f2dad7290d0fb458b0ba3c.tar.gz
postgresql-2fcc911750c0de13c4f2dad7290d0fb458b0ba3c.zip
Place PAM before REJECT in sample file.
Diffstat (limited to 'src')
-rw-r--r--src/backend/libpq/pg_hba.conf.sample10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/libpq/pg_hba.conf.sample b/src/backend/libpq/pg_hba.conf.sample
index 7e744608fcc..2787e9a53c5 100644
--- a/src/backend/libpq/pg_hba.conf.sample
+++ b/src/backend/libpq/pg_hba.conf.sample
@@ -151,16 +151,16 @@
# krb5: Kerberos V5 authentication is used. Allowed only for
# TCP/IP connections, not for local UNIX-domain sockets.
#
-# reject: Reject the connection. This is used to reject certain hosts
-# that are part of a network specified later in the file.
-# To be effective, "reject" must appear before the later
-# entries.
-#
# pam: Authentication is passed off to PAM (PostgreSQL must be
# configured --with-pam), using the default service name
# "postgresql" - you can specify your own service name, by
# setting AUTH_ARGUMENT to the desired service name.
#
+# reject: Reject the connection. This is used to reject certain hosts
+# that are part of a network specified later in the file.
+# To be effective, "reject" must appear before the later
+# entries.
+#
#
#
# Examples