nginx配置允许跨域
时间: 2023-10-18 08:26:57 浏览: 145
要在 Nginx 中配置允许跨域请求,你可以在 server 配置块中添加以下内容:
```
server {
...
location / {
...
# 允许指定的源进行跨域请求
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' "$http_origin";
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Access-Control-Allow-Headers' 'Authorization,Content-Type,Accept,Origin,User-Agent,DNT,Cache-Control,X-Mx-ReqToken,Keep-Alive,X-Requested-With,If-Modified-Since';
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}
# 处理其他请求
if ($request_method = 'GET') {
add_header 'Access-Control-Allow-Origin' "$http_origin";
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'Authorization,Content-Type,Accept,Origin,User-Agent,DNT,Cache-Control,X-Mx-ReqToken,Keep-Alive,X-Requested-With,If-Modified-Since';
}
...
}
...
}
```
上述配置会在 OPTIONS 请求中返回跨域所需的响应头,允许指定的源进行跨域请求。在其他请求中,也会返回相应的跨域响应头。
请注意替换上述配置中的 `"$http_origin"` 为你实际允许的源。你也可以将其更改为具体的域名,例如 `'https://example.com'`。
完成配置后,重新加载 Nginx 服务使其生效。
阅读全文