码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx反向代理解决跨域问题

时间:2018-09-21 10:55:23      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:项目   生产   server   char   test   logs   包含   ESS   技术   

本文源链接地址:https://www.93bok.com

通常开发环境可以通过设置proxy解决跨域问题,而生产环境下要么把前端项目放在后端项目里,要么设置cor解决跨域问题,前者不利于前后端分离,后者需要后端配置,而现在使用nginx做启动服务设置反向代理可以很好解决跨域问题。

1、编辑nginx.conf配置文件,添加location匹配规则实现代理转发
    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index index.php index.html index.htm;
        }

        location /test {
                rewrite ^/test/(.*)$ /$1 break;
                proxy_pass https://www.93bok.com/;
        }

技术分享图片

通过上面的设置,在重启nginx服务,或者nginx容器之后,可以让页面中所有包含test字段的请求都转为由服务器去向https://www.93bok.com/ 地址发送请求,从而巧妙的解决了浏览器的跨域问题

2、测试一下

我访问本地的http://192.168.1.88/test 这个地址,看看能否转到https://www.93bok.com

技术分享图片

Nginx反向代理解决跨域问题

标签:项目   生产   server   char   test   logs   包含   ESS   技术   

原文地址:https://www.cnblogs.com/93bok/p/9684944.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!