访问tomcat.imooc.com进入的是Welcome to nginx页面是为什么?
来源:3-7 nginx反向代理服务器域名解析配置实操(windows)
慕标9273953
2019-07-23
tomcat/imooc.com.conf文件如下:
server {
listen 80;
autoindex on;
server_name tomcat.imooc.com;
access_log d:/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://127.0.0.1:8080;
add_header Access-Control-Allow-Origin *;
}
}
hosts增加一行:
127.0.0.1 tomcat.imooc.com
访问结果如图:
写回答
1回答
-
同学,先确定一下http://127.0.0.1:8080能不能正常访问,把index index.html index.htm index.jsp index.php;注释掉。
122019-08-31
相似问题