nginx允许所有PUT跨域访问
时间: 2023-10-12 15:21:09 浏览: 127
默认情况下,nginx不允许跨域访问,包括PUT请求。要允许PUT请求的跨域访问,需要在nginx配置文件中添加以下内容:
```
location / {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, PUT, DELETE';
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}
if ($request_method = 'PUT') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, PUT, DELETE';
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
}
}
```
这段代码会在nginx的根目录下添加一个location,用于处理PUT请求和OPTIONS请求。OPTIONS请求用于预检请求,用于检查服务器是否支持跨域访问,如果支持,会返回一个包含Access-Control-Allow-*头信息的响应头。PUT请求则用于实际传输数据,也需要添加Access-Control-Allow-*头信息以允许跨域访问。这样,就可以实现nginx允许所有PUT跨域访问的功能。
阅读全文