This commit is contained in:
dima
2024-11-18 23:52:42 +03:00
parent 293bf6d004
commit 3bf99fc8f0
8 changed files with 30 additions and 22 deletions

View File

@ -1,12 +1,11 @@
listen_addresses = '{{ postgres_listen_addresses | default("*") }}'
listen_addresses = '{{ postgres_listen_addresses }}'
port = {{ postgres_port | default(5432) }}
port = {{ postgres_port }}
max_connections = {{ postgres_max_connections | default(100) }}
shared_buffers = {{ postgres_shared_buffers | default("128MB") }}
effective_cache_size = {{ postgres_effective_cache_size | default("4GB") }}
maintenance_work_mem = {{ postgres_maintenance_work_mem | default("64MB") }}
checkpoint_completion_target = {{ postgres_checkpoint_completion_target | default(0.7) }}
wal_buffers = {{ postgres_wal_buffers | default("16MB") }}
default_statistics_target = {{ postgres_default_statistics_target | default(100) }}
max_connections = {{ postgres_max_connections }}
shared_buffers = {{ postgres_shared_buffers }}
effective_cache_size = {{ postgres_effective_cache_size }}
maintenance_work_mem = {{ postgres_maintenance_work_mem }}
checkpoint_completion_target = {{ postgres_checkpoint_completion_target }}
wal_buffers = {{ postgres_wal_buffers }}
default_statistics_target = {{ postgres_default_statistics_target }}