当我想要在 microstack 上创建图像时,出现了 413 错误。提前感谢
你好,
当我试图在安装的 microstack fraichement 上创建图像时,出现了一个错误 413。
感谢您的帮助
弗雷德里克
<html> <head><title>413 Request Entity Too Large</title></head> <body bgcolor="white"> <center><h1>413 Request Entity Too Large</h1></center> <hr><center>nginx/1.13.0</center> </body> </html>
答案1
在里面文档你会发现nginx限制了服务器块的文件大小的上传。
Syntax: client_max_body_size size;
Default:
client_max_body_size 1m;
Context: http, server, location
Sets the maximum allowed size of the client request body, specified in the “Content-Length” request header field. If the size in a request exceeds the configured value, the 413 (Request Entity Too Large) error is returned to the client. Please be aware that browsers cannot correctly display this error. Setting size to 0 disables checking of client request body size.
编辑文件sudo vim /etc/nginx/nginx.conf
或
sudo vim /var/snap/microstack/common/etc/nginx/snap/nginx.conf
:
将 http client_max_body_size 设置为大于您想要的 iso 的大小。
http {
...
client_max_body_size 2000M;
}
现在通过
sudo systemctl reload nginx
或重新启动它sudo snap restart microstack