Fix container registry image uploads for git server

Do this by disabling checking of client request body size.
This commit is contained in:
June 2024-07-27 21:05:58 +02:00 committed by echtnurich
parent 89ee6878ad
commit 744d17c0c7
Signed by: echtnurich
SSH key fingerprint: SHA256:1eIkxME0VPeXC2WMl9Haus+q0SLFymSAWU7f6Z+A8Aw

View file

@ -34,6 +34,10 @@
return = "200 \"User-agent: *\\nDisallow: /*/*/archive/\\n\"";
};
};
# Disable checking of client request body size to make container registry
# image uploads work.
clientMaxBodySize = "0";
};
networking.firewall.allowedTCPPorts = [ 80 443 ];