nixos/nextcloud-notify_push: turn off keepalive_timeout, proxy_buffering (#364937)

Sandro e47c5369 bcc3a9b0

Changed files
+6
nixos
modules
services
+6
nixos/modules/services/web-apps/nextcloud-notify_push.nix
···
proxyPass = "http://unix:${cfg.socketPath}";
proxyWebsockets = true;
recommendedProxySettings = true;
+
extraConfig = # nginx
+
''
+
# disable in case it was configured on a higher level
+
keepalive_timeout 0;
+
proxy_buffering off;
+
'';
};
}