如何利用map实现Nginx允许多个域名跨域
程序员文章站
2022-04-10 09:01:56
常见的 nginx 配置允许跨域server { listen 11111; server_name localhost; location ~ /xxx/xx { if ($req...
常见的 nginx 配置允许跨域
server { listen 11111; server_name localhost; location ~ /xxx/xx { if ($request_method = 'options') { return 204; } add_header access-control-allow-origin *; add_header access-control-allow-methods 'get, post, options'; add_header access-control-allow-headers 'dnt,x-mx-reqtoken,keep-alive,user-agent,x-requested-with,if-modified-since,cache-control,content-type,authorization'; proxy_pass http://1.2.3.4:5678; } }
指定 access-control-allow-origin 为 ‘*' ,即为最简单暴力的允许所有访问跨域
允许 cookie
有些场景下需要使用 cookie,这时 nginx 需要加一句 add_header access-control-allow-credentials 'true';,但此时会发现浏览器报错,说该参数为 true 时,allow origin 不能设置为 ‘*‘,如果手动指定了多个域名,那同样会被浏览器提示错误,说 allow origin 不能设置多个,这些是协议层面的限制
使用 map
在 nginx 中可以使用 map 得到一个自定义变量,简单的使用可以参考官方文档,在上面提到的场景中,可以对请求中的 origin 做一个过滤处理,把符合要求的请求域名放到一个变量中,在设置 allow origin 时使用该变量就能实现一个动态的、多个的允许跨域域名
一个示例配置如下:
map $http_origin $allow_origin { default ""; "~^(https?://localhost(:[0-9]+)?)" $1; "~^(https?://127.0.0.1(:[0-9]+)?)" $1; "~^(https?://172.10(.[\d]+){2}(:[0-9]+)?)" $1; "~^(https?://192.168(.[\d]+){2}(:[0-9]+)?)" $1; } server { listen 11111; server_name localhost; location ~ /xxx/xx { if ($request_method = 'options') { return 204; } add_header access-control-allow-origin $allow_origin; add_header access-control-allow-methods 'get, post, options'; add_header access-control-allow-headers 'dnt,x-mx-reqtoken,keep-alive,user-agent,x-requested-with,if-modified-since,cache-control,content-type,authorization'; add_header access-control-allow-credentials 'true'; proxy_pass http://1.2.3.4:5678; } }
解释说明:
$http_origin 是 nginx 的内部变量,用于获取请求头中的 origin
$allow_origin 是可以自定义的变量名
总结
到此这篇关于如何利用map实现nginx允许多个域名跨域的文章就介绍到这了,更多相关map实现nginx允许多个域名跨域内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!