首页 > 代码库 > nginx跨域配置
nginx跨域配置
假设前端页面的地址为:
192.168.1.1/arcgis40/index.html
页面物理路径为:
X:\nginx-1.9.15\html\arcgis40
那么请求服务时,当ajax代码如下时:
$.ajax({
type: "GET",
dataType:"json",
url: "getVector/all/1/2/3",
success: function (data) {
alert(JSON.stringify(data));
},
error: function (msg) {
alert(JSON.stringify(msg));
}
});
实际发出的get地址为:192.168.1.1/arcgis40/getVector/all/1/2/3
那么在nginx.conf 中这样配置
location /arcgis40/getVector {
rewrite ^.+arcgis40/getVector/(.*)$ /$1 break;
include uwsgi_params;
proxy_pass http://localhost:5000/;
}
http://localhost:5000/ 为服务端ip地址
服务端的实际接口地址为:http://localhost:5000/all/1/2/3
nginx跨域配置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。