I installed a cluster wide ingress-nginx loadbalancer, as per the documentation.
Now, I have an issue that I want to upload files larger than 1m (this is the value accepted by the default nginx-ingress container).
Anyone knows what the right way to change the value of client_max_body_size is ?
Public Cloud - ingress-nginx load balancer
Related questions
- Can i use my own public cloud vm with floating ip as internet gatewaway for my private network?
11208
26.01.2026 08:13
- IPv6 subnet/extra IPv6 IPs on cloud instances/VPS
10496
31.01.2018 07:31
- Problem with Windows Server 2019 activation
9983
30.12.2020 04:04
- Is the Plesk License included?
9557
02.01.2018 11:56
- Ubuntu 20.04 image in OVH has been marked as DEPECRATED
8584
04.12.2020 23:28
- Automatic Block storage backup - how?
7902
06.05.2020 17:31
- Private Network shared between two or more Public Cloud projects
7123
11.03.2021 13:19
- Setup clickhouse with s3 high performance storage class (express onezone)
6922
16.10.2025 13:28
- Orders for Public Cloud project get cancelled
6399
02.07.2025 16:06
- Error has occurred creating your Public Cloud project
6299
08.10.2021 08:52
Hi @PeterB2 ,
Should help:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
nginx.ingress.kubernetes.io/proxy-body-size: "15m"
nginx.ingress.kubernetes.io/proxy-buffering: "off"
nginx.ingress.kubernetes.io/proxy-read-timeout: "600"
nginx.ingress.kubernetes.io/proxy-send-timeout: "600"
nginx.org/client-max-body-size: "15m"
Also check default restriction for application server.
Regards,