求助:nginx访问欢迎页面就行,但是转发就不行
来源:13-9 服务端项目自动化发布、验证、故障排查与解决
qq_闎_ehpwzA
2019-06-03
求助:访问nginx欢迎页面就行,但是转发就不行其他地方不行
server {
listen 80;
autoindex on;
server_name www.luckyluckymarket.club luckyluckymarket.club
access_log /usr/local/nginx/logs/access.log combined;
index index.html index.htm index.jsp index.php;
if ( $query_string ~* “.[;’<>].” ){
return 404;
}
location = / {
root /product/front/mmall_fe/dist/view;
index index.html;
}
location ~ .*.html$ {
root /product/front/mmall_fe/dist/view;
index index.html;
}
location / {
proxy_pass http://127.0.0.1:8080/;
}
location ~ .*.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
proxy_pass http://127.0.0.1:8080;
expires 30d;
}
location ~ .*.(js|css)?$ {
proxy_pass http://127.0.0.1:8080;
expires 7d;
}
}
-----------------------------
1回答
-
说明你的nginx转发策略没有配置正确。
012019-09-09
相似问题