nginx配置user.happymmall.com访问问题
来源:6-11 单点登录Redis存储Session及SessionId问题说明与集群实战-1
smile_小肥仔
2017-12-28
老师好
vhost只有一个happymmall.com.conf配置文件
happymmall.com.conf配置文件信息如下:
upstream www.happymmall.com{
server www.happymmall.com:8080 weight=1;
server www.happymmall.com:9080 weight=1;
#server www.imooc.com:8080;
#server www.imooc.com:9080;
}
server {
listen 80;
autoindex on;
server_name happymmall.com www.happymmall.com;
access_log D:\DevInstall\ftpfile\logs\access.log combined;
index index.html index.htm index.jsp index.php;
#error_page 404 /404.html;
if ( $query_string ~* ".*[\;'\<\>].*" ){
return 404;
}
location / {
proxy_pass http://www.happymmall.com;
add_header Access-Control-Allow-Origin *;
}
}
host配置信息如下:
127.0.0.1 www.happymmall.com
127.0.0.1 user.happymmall.com
问题:
访问www.happymmall.com可以跳转到index.jsp
访问user.happymmall.com页也可以跳转到index.jsp,没有配置user.happymmall.com,为什么也可以访问到index.jsp?
2回答
-
你好,同学,解决了就好,应该是和之前的老的nginx配置等冲突,其实不重新安装,把现在的配置都清空好,重新配置也是OK的。
最近年底加班比较多,回复晚了,还请同学海涵呀~~
元旦快乐!!
对啦!谢谢你的10分好评!!感谢感谢你的支持哈
122018-02-16 -
smile_小肥仔
提问者
2017-12-28
安装了一个新的nginx就好了
10
相似问题