windows下 nginx 配置都按步骤做了,可地址栏输入image.imooc.combaokuo tomcat都是停留在welcome to nginx
来源:5-5 jdk、tomcat、maven配置及初始化web空白项目
慕粉194614236
2017-08-13
图片也在img文件夹,加上图片名。进去是报404,老师大概是什么情况?
2回答
-
慕粉194614236
提问者
2017-08-13
server {
listen 80;
autoindex on;
server_name tomcat.imooc.com;
access_log c:/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 *;
}
}
server { listen 80;
autoindex off;
server_name image.imooc.com;
access_log c:/access.log combined;
index index.html index.htm index.jsp index.php;
#error_page 404 /404.html;
if ( $query_string ~* ".*[\;'\<\>].*" ){
return 404;
}
location ~ /(mmall_fe|mmall_admin_fe)/dist/view/* {
deny all;
}
location / {
root C:\ftpfile\img;
add_header Access-Control-Allow-Origin *;
}
}
老师,我就是复制的这两个配置!
00 -
Geely
2017-08-13
hi同学,你好,应该是ng的配置不对吧导致的
你的问题可以把更详细的配置发上来么,否则无法帮到你呢
另外 这两个问答和详细的解答了这个问题,你一定要认真和自己的做对比哟
老师您好 http 转发可以实现,但是无法找到图片
http://coding.imooc.com/learn/questiondetail/9369.html
关于image.imooc.com.conf域名解析的问题
http://coding.imooc.com/learn/questiondetail/9562.html
022017-08-13
相似问题