413 Request Entity Too Large(请求实体太大)
解决方案
找到自己主机的nginx.conf配置文件,打开
nginx默认配置的请求替大小是2M太小了,请求体太大会被拦截请求,可以在nginx的error日志中查看
在http{}中加入 client_max_body_size 10m;
然后重启nginx
/etc/init.d/nginx restart
start nginx
nginx -t
nginx -s -relaod
nginx -s stop
nginx端口占用,启动报错:bind() to 0.0.0.0:80 failed (10013: An attempt was made to access a socket in a way f
80端口被占用,导致nginx无法启动。
1 按键盘win+r 打开运行界面,输入cmd,确定,打开管理员界面
2 输入netstat -aon | findstr :80
3 输入tasklist|findstr "4300"
然后再计算机的服务里停止对应的服务,解除占用
对应的服务停止后,nginx就能正常启动了