采纳答案成功!
向帮助你的同学说点啥吧!感谢那些助人为乐的人
直接访问域名:http://www.icodding.com/
报错404 Not Found,但是加上index.jsp就正常,为什么?(注:通过IP+9080/8080不加index.jsp可以正常访问)
但是输入:http://www.icodding.com/index.jsp
是可以正常访问的
再补充下默认配置文件nginx.conf的完整配置信息:
请问你解决了吗,我也遇到这个问题,而且访问host/index.jsp页面时空白的
没有。。。。还在等老师
这是vhost下的自定义配置文件的完整信息
你好,亲爱的同学,那就是nginx的首页没有找到,nginx的首页转发配置的是什么呢,现在?
看你的情况,tomcat是ok的,然后nginx也是ok的,那就出在nginx转发到tomcat这个配置上。
发上来我们一起看一下。
upstream icodding{ server 127.0.0.1:8080 weight=1; server 127.0.0.1:9080 weight=2; } server { listen 80; autoindex on; server_name icodding.com www.icodding.com; access_log /usr/local/nginx/logs/access.log combined; index index.jsp 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/; proxy_pass http://icodding; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ { # proxy_pass http://127.0.0.1:8080;
location = / { root /product/front/mmall_fe/dist/view; index index.html; } 应该是这个不对吧
老师,首页是在哪配置.......是默认的nginx.conf吗?
应该是你Nginx代理的有问题
已经补充了完整的配置信息,能否帮具体分析下。。。。。。
登录后可查看更多问答,登录/注册
Tomcat集群+Redis分布式+代码重构+源码原理解析
1.6k 17
2.6k 12
1.7k 12
1.6k 11
1.9k 10