/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;
}        

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

保存退出

:wq

启动nginx

/usr/local/nginx/sbin/nginx
Last modification:September 8, 2019
如果觉得这篇技术文章对你有用,请随意赞赏