1、nginx 反向代理 解决跨域问题
server {
listen 8071; #端口号
server_name 192.168.119.182; #本地IP地址 或用 localhost
location / {
root D:/an/pc/dist; #项目路径
index index.html index.htm; #默认首页
}
# 反向代理 跨域
location /ECS {
proxy_pass http://192.168.119.17:10136; #目标地址
}
}