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 ?
ingress-nginx load balancer
Related questions
- IPv6 subnet/extra IPv6 IPs on cloud instances/VPS
9107
31.01.2018 07:31
- Problem with Windows Server 2019 activation
8545
30.12.2020 04:04
- Is the Plesk License included?
8169
02.01.2018 11:56
- Can i use my own public cloud vm with floating ip as internet gatewaway for my private network?
7777
26.01.2026 08:13
- Ubuntu 20.04 image in OVH has been marked as DEPECRATED
7281
04.12.2020 23:28
- Automatic Block storage backup - how?
6451
06.05.2020 17:31
- Private Network shared between two or more Public Cloud projects
6195
11.03.2021 13:19
- Setup clickhouse with s3 high performance storage class (express onezone)
5803
16.10.2025 13:28
- Error has occurred creating your Public Cloud project
5389
08.10.2021 08:52
- CORS in Object Storage
5298
03.11.2020 06:02
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,