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

Nginx解决跨域问题

时间:2020-06-11 13:49:23      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:ret   cache   cat   size   nginx   shel   methods   origin   control   

  1. 前后端分离项目,优先使用Nginx同域部署
  2. 不能同域部署的势必会跨域,此时则需要用Nginx给后端项目做反向代理,做还有额外配置:
location / {
	# 1.针对复杂请求,的前导OPTIONS请求,采取一律放行政策,Nginx拦截后直接返回200,不打到后端接口,避免后端认证等问题(因为OPTIONS请求不支持自定义头)
        if ($request_method = ‘OPTIONS‘) {
                return 200;
        }

        # 2.文件上传大小限制
        client_max_body_size 3g;

        # 3.给所有请求添加响应头,主要是允许跨域
        add_header Access-Control-Allow-Origin *;
        add_header Access-Control-Allow-Credentials true;
        add_header Access-Control-Allow-Methods ‘GET, POST, OPTIONS‘;
        add_header Access-Control-Allow-Headers ‘origin,Authorization,Cache-Control,Content-Type‘;
        
        # 4.后端反向代理
        proxy_pass http://192.168.50.87:8090;
}

Nginx解决跨域问题

标签:ret   cache   cat   size   nginx   shel   methods   origin   control   

原文地址:https://www.cnblogs.com/JaxYoun/p/13092333.html

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