我试了试,原来是Linux系统中,防火墙未关闭,搞了半天,window系统中,可以连接Linux虚拟机中的ftp 服务器,也能够上传图片,但是,点击url来查看图片时,报错:404
nginx和hosts中到底如何配置??
下面是nginx中,img.happymmall.com.conf的配置,如下:
server {
listen 80;
autoindex off;
server_name img.happymmall.com;
access_log /usr/local/nginx/logs/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 /ftpfile/img/;
add_header Access-Control-Allow-Origin *;
}
}
hosts中的配置,如下:
这里说明一下,我们Linux虚拟机的ip为:192.168.137.10
192.168.137.10 img.happymmall.com
大家帮帮忙看看,到底哪儿错啦,非常感谢!!!!!!!!!!1