mirror of
https://github.com/postgres/postgres.git
synced 2025-07-17 06:41:09 +03:00
Adjust configuration-files GUC behavior as per my recent proposal.
The vars are renamed to data_directory, config_file, hba_file, and ident_file, and are guaranteed to be set to accurate absolute paths during postmaster startup. This commit does not yet do anything about hiding path values from non-superusers.
This commit is contained in:
@ -30,13 +30,13 @@
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
# The default values of these variables are driven from the -D command line
|
||||
# switch or PGDATA environment variable, represented here as $PGDATA.
|
||||
# pgdata = '$PGDATA' # use data in another directory
|
||||
# hba_conf = '$PGDATA/pg_hba.conf' # the host-based authentication file
|
||||
# ident_conf = '$PGDATA/pg_ident.conf' # the IDENT configuration file
|
||||
# switch or PGDATA environment variable, represented here as ConfigDir.
|
||||
# data_directory = 'ConfigDir' # use data in another directory
|
||||
# hba_file = 'ConfigDir/pg_hba.conf' # the host-based authentication file
|
||||
# ident_file = 'ConfigDir/pg_ident.conf' # the IDENT configuration file
|
||||
|
||||
# If external_pidfile is not explicitly set, no extra pid file is written.
|
||||
# external_pidfile = '(none)' # write an extra pid file
|
||||
# If external_pid_file is not explicitly set, no extra pid file is written.
|
||||
# external_pid_file = '(none)' # write an extra pid file
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user