k8s-ingress 413 Request Entity Too Large

k8s集群中,将图片或是文件上传到文件服务器上,

可是大于1M是就会报错

413 Request Entity Too Large

一、在web的nginx.conf中添加

client_body_buffer_size 50m;

二、修改各个服务中

Vim  ingress.yaml

  annotations:

 nginx.ingress.kubernetes.io/proxy-body-size:  "50m"  #新的命令

重启该服务

三、验证:

cat -n  /etc/nginx/nginx.conf  | grep nginx

head -372  /etc/nginx/nginx.conf

你可能感兴趣的:(k8s-ingress 413 Request Entity Too Large)