From aa0b2f9031ad6fc29480f40c4cd4fd506b3c49ef Mon Sep 17 00:00:00 2001 From: merlin Date: Tue, 3 Feb 2026 16:52:39 +0800 Subject: [PATCH] fix: fix nginx max-body-size limit --- templates/configmap.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/configmap.yaml b/templates/configmap.yaml index b5b79ce..d7e462b 100644 --- a/templates/configmap.yaml +++ b/templates/configmap.yaml @@ -8,6 +8,8 @@ data: listen 8080; server_name {{ if .Values.ingress.enabled }}{{ (index .Values.ingress.hosts 0).host }}{{ else }}_{{ end }}; + client_max_body_size 50m; + root /app/dist; index index.html;