mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Add support for GSSAPI authentication.
Documentation still being written, will be committed later. Henry B. Hotz and Magnus Hagander
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
* Written by Peter Eisentraut <peter_e@gmx.net>.
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.404 2007/06/30 19:12:02 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.405 2007/07/10 13:14:21 mha Exp $
|
||||
*
|
||||
*--------------------------------------------------------------------
|
||||
*/
|
||||
@@ -1040,7 +1040,7 @@ static struct config_bool ConfigureNamesBool[] =
|
||||
|
||||
{
|
||||
{"krb_caseins_users", PGC_POSTMASTER, CONN_AUTH_SECURITY,
|
||||
gettext_noop("Sets whether Kerberos user names should be treated as case-insensitive."),
|
||||
gettext_noop("Sets whether Kerberos and GSSAPI user names should be treated as case-insensitive."),
|
||||
NULL
|
||||
},
|
||||
&pg_krb_caseins_users,
|
||||
|
@@ -79,11 +79,11 @@
|
||||
#password_encryption = on
|
||||
#db_user_namespace = off
|
||||
|
||||
# Kerberos
|
||||
# Kerberos and GSSAPI
|
||||
#krb_server_keyfile = '' # (change requires restart)
|
||||
#krb_srvname = 'postgres' # (change requires restart)
|
||||
#krb_srvname = 'postgres' # (change requires restart, kerberos only)
|
||||
#krb_server_hostname = '' # empty string matches any keytab entry
|
||||
# (change requires restart)
|
||||
# (change requires restart, kerberos only)
|
||||
#krb_caseins_users = off # (change requires restart)
|
||||
|
||||
# - TCP Keepalives -
|
||||
|
Reference in New Issue
Block a user