nginx解决跨域问题
时间: 2023-07-16 07:13:52 浏览: 132
Nginx可以通过配置反向代理来解决跨域问题。具体步骤如下:
1. 在Nginx的配置文件中添加以下代码:
```
location / {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
if ($request_method = 'OPTIONS') {
return 204;
}
}
```
2. 在代理服务器上设置proxy_set_header,将HTTP头中的Origin信息传递给后端服务器,以便后端服务器可以知道请求的来源。
```
location / {
proxy_pass http://backend_server;
proxy_set_header Host $host;
proxy_set_header Origin $http_origin;
}
```
这样就可以解决跨域问题了。需要注意的是,以上配置会允许所有的来源访问服务器,如果需要只允许特定来源的访问,可以将`*`改为相应的域名。
阅读全文