diff --git a/src/main/helm/templates/ingress.yaml b/src/main/helm/templates/ingress.yaml
index 17d2a1889a3b20dc9a46b40870e7a6c5ba5cde6b..0199f6603e175ffc33c793269d6eab6fb179d4df 100644
--- a/src/main/helm/templates/ingress.yaml
+++ b/src/main/helm/templates/ingress.yaml
@@ -32,7 +32,7 @@ metadata:
     {{- else }}
     cert-manager.io/cluster-issuer: letsencrypt-prod
     {{- end }}
-    nginx.ingress.kubernetes.io/proxy-body-size: 100m
+    nginx.ingress.kubernetes.io/proxy-body-size: 42m
   name: {{ include "app.name" . }}
   namespace: {{ include "app.namespace" . }}
 spec:
diff --git a/src/test/helm/ingress_test.yaml b/src/test/helm/ingress_test.yaml
index 1dff7a927ceaf014ff65cefa70dfda302993255c..dc3b721cf818f75b3dca1995696c064519cf4a84 100644
--- a/src/test/helm/ingress_test.yaml
+++ b/src/test/helm/ingress_test.yaml
@@ -100,8 +100,8 @@ tests:
       - equal:
           path: metadata.annotations.[cert-manager.io/cluster-issuer]
           value: letsencrypt-prod
-  - it: should set proxy body size to 100m
+  - it: should set proxy body size to 42m
     asserts:
       - equal:
           path: metadata.annotations.[nginx.ingress.kubernetes.io/proxy-body-size]
-          value: 100m
\ No newline at end of file
+          value: 42m
\ No newline at end of file