postgres: increse max_connections to 1000

This commit is contained in:
Jonas Gaffke 2023-11-09 15:29:42 +01:00 committed by quitte
parent 7e17d77b1d
commit 0dab62ebff

View file

@ -1,4 +1,4 @@
{ ... }: { pkgs, ... }:
{ {
# automatically back up all databases # automatically back up all databases
services.postgresqlBackup = { services.postgresqlBackup = {
@ -19,4 +19,6 @@
"mailmanweb" "mailmanweb"
]; ];
}; };
services.postgresql.settings.max_connections = 1000;
} }