博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx跨域问题解决
阅读量:6317 次
发布时间:2019-06-22

本文共 1827 字,大约阅读时间需要 6 分钟。

hot3.png

location / {      add_header Access-Control-Allow-Origin *;    add_header Access-Control-Allow-Methods 'GET, POST, 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';    if ($request_method = 'OPTIONS') {        return 204;    }}
if ( $http_user_agent = "Mozilla/5.0"){return 403;}location / {add_header 'Access-Control-Allow-Origin' '*';## Om nom nom cookies#add_header 'Access-Control-Allow-Credentials' 'true';add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';# # Custom headers and headers various browsers *should* be OK with but aren't#add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';proxy_pass http://10.0.0.10/;proxy_set_header Host "tangxiaoyue";}
server{listen 8099;server_name wdm.test.cn;location / {  // 没有配置OPTIONS的话,浏览器如果是自动识别协议(http or https),那么浏览器的自动OPTIONS请求会返回不能跨域  if ($request_method = OPTIONS ) {    add_header Access-Control-Allow-Origin "$http_origin";    add_header Access-Control-Allow-Methods "POST, GET, PUT, OPTIONS, DELETE";    add_header Access-Control-Max-Age "3600";    add_header Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept, Authorization";    add_header Access-Control-Allow-Credentials "true";    add_header Content-Length 0;    add_header Content-Type text/plain;    return 200;  }  add_header 'Access-Control-Allow-Origin' '$http_origin';  add_header 'Access-Control-Allow-Credentials' 'true';  add_header 'Access-Control-Allow-Methods' 'GET, PUT, POST, DELETE, OPTIONS';  add_header 'Access-Control-Allow-Headers' 'Content-Type,*';  proxy_pass http://127.0.0.1:8080;  }}

转载于:https://my.oschina.net/miaojiangmin/blog/1845152

你可能感兴趣的文章
bootstrap-列表组
查看>>
菜鸟学Linux 第024篇笔记 压缩,tar,read,script
查看>>
P6 550 #5802对5.3版本均有要求
查看>>
Vmware vSphere 6.0之安装 vCenter Server Appliance
查看>>
YUM部署高版本LNMP环境
查看>>
计划2018-02-20
查看>>
zabbix入门到高级
查看>>
通过python获取服务器所有信息
查看>>
php上传大文件配置
查看>>
Win8 Metro(C#)数字图像处理--2.45图像雾化效果算法
查看>>
k3cloud设置同一单据的单据头字段各行合并显示
查看>>
Linux日志管理
查看>>
Gitlab完整搭建手册+排错
查看>>
简述计算机从加电到启动系统时主板的工作流程
查看>>
js页面缓存问题
查看>>
QRCode.js:使用 JavaScript 生成二维码
查看>>
SQL语言的CASE语句备忘
查看>>
Fatal error LNK1168: cannot open *.exe file for writing
查看>>
JVM的内存区域划分
查看>>
郁闷得发展方向
查看>>