You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/test/infra/infra-pgsql17-repl/conf/pgsql/pgsql2/postgresql.conf

25 lines
736 B

# PostgreSQL Replica Configuration for Streaming Replication
# This is a replica (read-only) server
# Connection settings
hba_file = '/etc/postgresql/pg_hba.conf'
listen_addresses = '*'
port = 5432
# Hot standby settings (allow read queries on replica)
hot_standby = on
hot_standby_feedback = on
# Primary connection info (will be set dynamically via pg_basebackup -R or manually)
# The primary_conninfo is typically set automatically when using pg_basebackup -R
# primary_conninfo = 'host=pgsql1.pgsql17-repl port=5432 user=replicator password=replicator'
# Logging
logging_collector = 'on'
log_directory = '/var/log/postgresql'
log_filename = 'postgresql.log'
log_statement = 'all'
# SSL (disabled for CI/CD testing)
ssl = 'off'