电商前后台项目-2)Nginx反向代理器域名解析配置实操

1)在Nginx下conf目录下,在nginx.conf目录下添加include vhost/*.conf;,把vhost文件夹包含进去

2)在conf目录下新建vhost文件夹,新建image.tmooc.com.conf配置文件,添加以下内容

电商前后台项目-2)Nginx反向代理器域名解析配置实操

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; //根目录是ftp服务器下的img目录 add_header Access-Control-Allow-Origin *; } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzfgps.html