nginx 跨域配置
时间: 2023-08-11 18:04:02 浏览: 135
nginx跨域配置
要在 Nginx 中配置跨域,你可以使用 `add_header` 指令来添加 `Access-Control-Allow-Origin` 头信息。这个头信息允许指定的域名或通配符访问资源。以下是一个示例配置:
```
location / {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
add_header 'Access-Control-Max-Age'1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length'0;
return204;
}
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
}
```
在上面的示例中,`Access-Control-Allow-Origin` 头信息被设置为 `*`,表示允许任何域名访问资源。你也可以将其设置为特定的域名,如 `'http://example.com'`。
请注意,如果你的应用程序需要使用自定义头信息,你需要在 `add_header 'Access-Control-Allow-Headers'` 中添加它们。
完成配置后,重新加载 Nginx使配置生效。这样就可以实现跨域访问了。
阅读全文