使用Nginx转发解决网站跨域问题方案

2019-09-08T17:53:00

/usr/local/nginx/conf(nginx安装目录)目录中找到nginx.conf文件,在server中添加

如果nginx已经启动,需要先停止nginx,否则修改不成功!

/usr/local/nginx/sbin/nginx -s stop

编辑nginx.conf

vi nginx.conf

添加以下配置

location /a {
    proxy_pass   http://test1.songzixian.com:8080/;
    index  index.html index.htm;
}

location /b {
    proxy_pass   http://test2.songzixian.com:8081/;
    index  index.html index.htm;
}        

保存退出

:wq

启动nginx

/usr/local/nginx/sbin/nginx
当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »