fix: nginx upload limit increased

This commit is contained in:
silver 2024-05-27 11:31:37 +01:00
parent e7e5d554b2
commit a6b070a971
Signed by: silver
GPG key ID: 54E2C71918E93B74

View file

@ -160,7 +160,12 @@ in {
"${cfg.domain.sub}.${cfg.domain.base}.${cfg.domain.tld}" = { "${cfg.domain.sub}.${cfg.domain.base}.${cfg.domain.tld}" = {
forceSSL = true; forceSSL = true;
useACMEHost = "skynet"; useACMEHost = "skynet";
locations."/".proxyPass = "http://unix:/run/gitlab/gitlab-workhorse.socket"; locations."/" = {
proxyPass = "http://unix:/run/gitlab/gitlab-workhorse.socket";
extraConfig = ''
client_max_body_size 1000M;
'';
};
}; };
# pages # pages