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

Nginx跨域问题

时间:2018-06-13 18:46:10      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:style   div   oca   表示   ref   led   localtion   get   gen   

Nginx跨域无法访问,通常报错:

Failed to load http://172.18.6.30:8086/CityServlet: No ‘Access-Control-Allow-Origin‘ header is present on the requested resource. Origin ‘http://test.dingkailinux.cn‘ is therefore not allowed access.

可以在nginx的配置文件中对应的localtion中添加:

           add_header Access-Control-Allow-Origin *; #"*"表示允许所有域名,可以替换成你允许的域名
           add_header Access-Control-Allow-Credentials true;
           add_header Access-Control-Allow-Headers Authorization,Content-Type,Accept,Origin,User-Agent,DNT,Cache-Control,X-Mx-ReqToken,X-Requested-With;
           add_header Access-Control-Allow-Methods GET,POST,OPTIONS;

重启nginx,就可以访问了

Nginx跨域问题

标签:style   div   oca   表示   ref   led   localtion   get   gen   

原文地址:https://www.cnblogs.com/dingkailinux/p/9179242.html

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