From 85376037f971a4a2b99de985656b820b0cc6a895 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 8 Jan 2025 15:36:23 +0530 Subject: [PATCH] Add default postgres config Signed-off-by: Keshav Priyadarshi --- etc/postgresql/postgresql.conf | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 etc/postgresql/postgresql.conf diff --git a/etc/postgresql/postgresql.conf b/etc/postgresql/postgresql.conf new file mode 100644 index 0000000..2bf294d --- /dev/null +++ b/etc/postgresql/postgresql.conf @@ -0,0 +1,8 @@ +# Default postgresql.conf + +listen_addresses = '*' +max_connections = 100 +shared_buffers = 128MB +dynamic_shared_memory_type = posix +max_wal_size = 1GB +min_wal_size = 80MB