nginx遇见问题以及解决
1.nginx设置的路径访问和Vue的路由规则不一致
server {
listen 80;
server_name testwx.wangshibo.com;
root /Data/app/xqsj_wx/dist;
index index.html;
access_log /var/log/testwx.log main;
location / {
try_files $uri $uri/ @router;
index index.html;
}
location @router {
rewrite ^.*$ /index.html last;
}
}
2.nginx出现413 Request Entity Too Large的问题
- 打开nginx配置文件 nginx.conf, 路径一般是:/etc/nginx/nginx.conf。
- 在http{}段中加入 client_max_body_size 20m; 20m为允许最大上传的大小。
- 保存后重启nginx,问题解决。
本文标题:nginx遇见问题以及解决
本文链接:https://www.haomeiwen.com/subject/pykosctx.html
网友评论