From 9d05c9ca73c2b501744d528475532ab728318bde Mon Sep 17 00:00:00 2001 From: Peter Bex Date: Sun, 19 Mar 2023 10:06:45 +0100 Subject: Initial version of "ppq" - portable PostgreSQL This allows running PostgreSQL locally without having to set up a system-wide service. It is portable in the sense that you can move the directory around, and you can run multiple instances side-by-side. --- postgres/postgresql.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 postgres/postgresql.conf (limited to 'postgres/postgresql.conf') diff --git a/postgres/postgresql.conf b/postgres/postgresql.conf new file mode 100644 index 0000000..0d16559 --- /dev/null +++ b/postgres/postgresql.conf @@ -0,0 +1,11 @@ +# Disable listening on a port to make it more self-contained and allow multiple instances +listen_addresses='' + +# Avoid random shell locale settings from messing with the db settings - default to C locale +lc_messages='C' +lc_monetary='C' +lc_numeric='C' +lc_time='C' + +# Put any overrides into your own config file here: +include_if_exists 'postgresql_overrides.conf' \ No newline at end of file -- cgit v1.2.3