From a81981df87aa51fbc12f7d0131e74014a419c15f Mon Sep 17 00:00:00 2001 From: Ryan Moon Date: Tue, 31 Mar 2026 18:47:25 -0500 Subject: [PATCH] Remove nginx upload size limit for container registry --- ansible/roles/gitea/templates/nginx.conf.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ansible/roles/gitea/templates/nginx.conf.j2 b/ansible/roles/gitea/templates/nginx.conf.j2 index ce53d20..d810ecb 100644 --- a/ansible/roles/gitea/templates/nginx.conf.j2 +++ b/ansible/roles/gitea/templates/nginx.conf.j2 @@ -14,6 +14,8 @@ server { ssl_protocols TLSv1.2 TLSv1.3; ssl_ciphers HIGH:!aNULL:!MD5; + client_max_body_size 0; + location / { proxy_pass http://127.0.0.1:{{ gitea_http_port }}; proxy_set_header Host $host;