fix: nginx upload limit increased
This commit is contained in:
parent
e7e5d554b2
commit
a6b070a971
1 changed files with 6 additions and 1 deletions
|
@ -160,7 +160,12 @@ in {
|
|||
"${cfg.domain.sub}.${cfg.domain.base}.${cfg.domain.tld}" = {
|
||||
forceSSL = true;
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue