这个是nginx配置
server {
listen 80;
autoindex on;
server_name image.imooc.com;
access_log c:/nginx/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:/ftpserver/ftpfile/img;
add_header Access-Control-Allow-Origin *;
}
}
这个是host配置
127.0.0.1 image.imooc.com
127.0.0.1 tomcat.imooc.com
直接输入image.imooc.com是可以进入到Welcome to nginx界面,但是往下找图片就进不去了,上传图片可以上传上去,但是访问就是404