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

Nginx出现双跨域问题解决

时间:2019-12-23 16:47:41      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:control   移除   The   origin   author   pos   ali   options   text   

Nginx作为代理,出现:The ‘Access-Control-Allow-Origin‘ header contains multiple values ‘, ‘, but only one is allowed 错误。

服务器端允许跨域

location / {
add_header ‘Access-Control-Allow-Origin‘ $http_origin;
add_header ‘Access-Control-Allow-Credentials‘ ‘true‘;
add_header ‘Access-Control-Allow-Methods‘ ‘GET, POST, OPTIONS‘;
add_header ‘Access-Control-Allow-Headers‘ ‘DNT,web-token,app-token,Authorization,Accept,Origin,Keep-Alive,User-Agent,X-Mx-ReqToken,X-Data-Type,X-Auth-Token,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range‘;
add_header ‘Access-Control-Expose-Headers‘ ‘Content-Length,Content-Range‘;
if ($request_method = ‘OPTIONS‘) {
add_header ‘Access-Control-Max-Age‘ 1728000;
add_header ‘Content-Type‘ ‘text/plain; charset=utf-8‘;
add_header ‘Content-Length‘ 0;
return 204;
}

报错处理

看上面错误提示,contains multiple values "*" 意思就是设置了2次跨域,我们这边是我在nginx里面设置了跨域,开发在程序里面也设置了跨域处理,但是只有一个是允许的,移除其中的任意一个就好了。如果服务器设置了允许跨域,使用Nginx代理里面就不需要设置跨域了。

Nginx出现双跨域问题解决

标签:control   移除   The   origin   author   pos   ali   options   text   

原文地址:https://blog.51cto.com/9025736/2460978

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