那年那日那朵花

".......(o´ω`o)......"

nginx跨域配置

2018-01-02 15:19 linux

项目前后端分离后可能会碰到前端项目的跨域请求问题。为了不改动后端代码,可以将这部分跨域的配置做在反向代理nginx上。
很简单,在需要的location上添加如下

add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Headers X-Requested-With;
add_header Access-Control-Allow-Methods GET,POST,OPTIONS;

即可

Cloudhu 个人随笔|built by django|

沪ICP备16019452号-1