Kubernetes nginx-ingress 上传文件大小限制问题

解决方法 在 pod Ingress YAML 中加入 nginx.org/client-max-body-size: "20m" 即可解决 此方法只在kuboard中亲测过。

kind: Ingress
metadata:
  annotations:
    nginx.org/client-max-body-size: "4096m"   ##设置最大上传4096M

猜你喜欢

转载自blog.csdn.net/weixin_43357497/article/details/111828252