From c132094166b74acd1ee21c1f6623fc34863a49fd Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Thu, 9 Jan 2025 12:25:01 +0530 Subject: [PATCH] Add default postgresql.conf for local docker build Signed-off-by: Keshav Priyadarshi --- etc/postgresql/postgresql.conf | 12 ++++++++++++ 1 file changed, 12 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 000000000..57ea6700a --- /dev/null +++ b/etc/postgresql/postgresql.conf @@ -0,0 +1,12 @@ +# Default configuration for development build +# DB Version: 13 +# OS Type: linux +# DB Type: development +# Data Storage: local + +listen_addresses = '*' +max_connections = 100 +shared_buffers = 128MB +dynamic_shared_memory_type = posix +max_wal_size = 1GB +min_wal_size = 80MB