# Config file for /etc/init.d/postgresql, /lib/systemd/system/postgresql.service,
# /usr/bin/postgresql-check-db-dir
#
# Note: changing PGPORT or PGDATA will typically require adjusting SELinux
# configuration as well; see /usr/share/doc/postgresql/README.rpm-dist.

PGDIR="/var/lib/pgsql"
PGDATA="/var/lib/pgsql/data"
PIDFILE="$PGDATA/postmaster.pid"
PGPORT="5432"
# Set default authentication method for connections
# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256",
# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert".
#
# Note that "password" sends passwords in clear text; "md5" or
# "scram-sha-256" are preferred since they send encrypted passwords.
PGMETHOD="scram-sha-256"

# Set database locale here if need different from system
#PGLOCALE=""
