美文网首页
nginx 跨域配置,做点dns节点感觉还可以

nginx 跨域配置,做点dns节点感觉还可以

作者: 水电梁师傅 | 来源:发表于2019-01-09 23:29 被阅读8次

nginx中配置跨域支持功能
vi /etc/nginx/nginx.conf
加入如下代码

http {

start####

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

end

}

:wq!保存

service nginx restart 重启nginx即可

相关文章

网友评论

      本文标题:nginx 跨域配置,做点dns节点感觉还可以

      本文链接:https://www.haomeiwen.com/subject/jjnnrqtx.html