第二步
3.配置nginx 使其能够指向ftp图片服务器 这个地方什么域名就写什么 .conf文件 然后放在nginx 导入的目录下即可
server { listen 80; autoindex off; server_name img.omega-sz.cn; 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 /www/qrcode/; add_header Access-Control-Allow-Origin *; } }
然后上传jar包到服务器上
然后就可以了