nginx配置跨域问题

谁都会走 提交于 2020-03-13 22:04:50

在nginx.conf里找到http,增加如下配置:

    add_header Access-Control-Allow-Origin *;

    add_header Access-Control-Allow-Credentials 'true' ;

    add_header Access-Control-Allow-Methods 'GET,POST,PUT,DELETE,OPTIONS' ;

    add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!