feat: add postgres support

This commit is contained in:
Clément Désiles
2025-11-10 18:24:43 +01:00
parent 2c8f49191c
commit 83b6a38999
8 changed files with 409 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# Custom PostgreSQL configuration managed by Ansible
# Override settings from main postgresql.conf
# 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 }}