博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx跨域设置
阅读量:5086 次
发布时间:2019-06-13

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

nginx跨域问题

例子:访问http://10.0.0.10/ 需要能实现跨域

操作:

只有用Nginx做个代理,解决跨域问题了!

 

1、将www.tangxiaoyue.com域名指向。只有在域名上设置才能实现跨域。(10.0.0.11是Nginx的IP)

2、在nginx上的配置文件tang.conf进行设置

配置文件例如:

server {listen 80;server_name tangxiaoyue.com;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";}}

转载于:https://www.cnblogs.com/brucetang/p/9699504.html

你可能感兴趣的文章
使用Gitblit 在windows 上部署你的Git Server
查看>>
217. Contains Duplicate
查看>>
vue2.0 关于Vue实例的生命周期
查看>>
jenkins 更换主数据目录
查看>>
Silverlight中恼人的g.i.cs错误
查看>>
SQLite 数据库增删改查
查看>>
<s:iterator>的status
查看>>
C++入门--1.0输入输出
查看>>
让搭建在Github Pages上的Hexo博客可以被Google搜索到
查看>>
Introduction to 3D Game Programming with DirectX 12 学习笔记之 --- 第十四章:曲面细分阶段...
查看>>
在WPF控件上添加Windows窗口式调整大小行为
查看>>
背水一战 Windows 10 (36) - 控件(弹出类): ToolTip, Popup, PopupMenu
查看>>
打开3389
查看>>
React学习记录
查看>>
nginx常见内部参数,错误总结
查看>>
对象与类
查看>>
《奸的好人2》财色战场----笔记
查看>>
BZOJ 1834网络扩容题解
查看>>
bzoj1878
查看>>
【Vegas原创】Mysql绿色版安装方法
查看>>