1.目标需求
1.在localhost:8099/index.html 页面访问http://47.105.0.121:5295域名端口下的接口,即实现跨域访问
2.实现步骤
1.下载nginx nginx下载地址(此处以1.12.2为例)
2.配置nginx文件
2.1 找到conf文件夹下的nginx.conf文件,注释其默认的server,添加新的server
下方为新配置server
server{
listen 8099;
server_name localhost;
location /{
proxy_pass http://localhost:8096;
}
location /api{
proxy_pass http://47.105.0.121:5295;
}
}
2.2 启动nginx
启动命令
nginx.exe
2.3 http://localhost:8096为本地项目原始路径,要实现跨域访问需运行http://localhost:8099/index.html(注意端口)