14 lines
463 B
Django/Jinja
14 lines
463 B
Django/Jinja
# Custom PostgreSQL configuration managed by Ansible
|
|
# Override settings from main postgresql.conf
|
|
|
|
# Network configuration
|
|
listen_addresses = '{{ postgres_bind }}'
|
|
port = {{ postgres_port }}
|
|
|
|
# Performance tuning
|
|
shared_buffers = {{ postgres_shared_buffers }}
|
|
effective_cache_size = {{ postgres_effective_cache_size }}
|
|
maintenance_work_mem = {{ postgres_maintenance_work_mem }}
|
|
work_mem = {{ postgres_work_mem }}
|
|
max_connections = {{ postgres_max_connections }}
|