我是winows里敲代码,tomcat用windows里的。linux里配置了nginx和vsftpd服务和tomcat。linux里的配置按视频里的都配通了。mmall.property文件里的img.happymmall.com 我改成了image.imooc.com.我在windows的host里加上了这个地址的映射。
mmall.property文件:
ftp.server.http.prefix=http://image.imooc.com/
windows的host文件:
虚拟机linux的ip
192.168.233.128 image.imooc.com
虚拟机的host
#centos
192.168.233.128 www.imooc.com
192.168.233.128 image.imooc.com
192.168.233.128 s.imooc.com
image.imooc.com.conf的配置
server{
listen 80;
autoindex on;
server_name image.imooc.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/;
add_header Access-Control-Allow-Origin *;
}
}
这个项目运行的时候 上传图片怎么总是失败呢。我这个映射需要改哪里啊?