nixos/gitlab: add proxyWebsockets as recommended nginx setting (#431884)

authored by xanderio and committed by GitHub 61dfdcf0 15a7cb45

+4 -1
+4 -1
nixos/modules/services/misc/gitlab.md
··· 21 virtualHosts."git.example.com" = { 22 enableACME = true; 23 forceSSL = true; 24 - locations."/".proxyPass = "http://unix:/run/gitlab/gitlab-workhorse.socket"; 25 }; 26 }; 27 }
··· 21 virtualHosts."git.example.com" = { 22 enableACME = true; 23 forceSSL = true; 24 + locations."/" = { 25 + proxyPass = "http://unix:/run/gitlab/gitlab-workhorse.socket"; 26 + proxyWebsockets = true; 27 + }; 28 }; 29 }; 30 }