Unverified Commit b43f31e5 authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

nixos/nextcloud-notify_push: turn off keepalive_timeout, proxy_buffering

Just a safe guard in case it was configured in a higher level as
otherwise notify_push would break.
parent 22ea194d
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -143,6 +143,12 @@ in
          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;
            '';
        };
      }