413 Request Entity Too Large
這是因為傳輸文件過大,超出了Nginx的限制。
你可以修改nginx.conf
進入nginx.conf
cd /etc/nginx/
vim nginx.conf
加入這段代碼,你可以在http{},也可以在server{},也可以在location{},情景不一樣。
client_max_body_size 20M;
這里一定別忘了加上;
關(guān)于Nginx 重啟時丟失nginx.pid文件
第一步、強行停止nginx進程
pkill -9 nginx
1
2、開啟nginx進程
ps -ef | grep nginx
1
3、重新配置nginx.conf文件
nginx -c /etc/nginx/nginx.conf
。。。。。。。。。。。。。
作者:Vam的金豆之路
篇幅有限更多請見擴展鏈接:
http://www.mark-to-win.com/tutorial/50970.html