Nginx设置Access-Control-Allow-Origin多域名跨域

修改配置文件

可通过如下配制进行多域名的设置。

map $http_origin $corsHost {
   default 0;
   "~https://www.itbiancheng.com" https://www.itbiancheng.com;
   "~http://love.itbiancheng.com" http://love.itbiancheng.com;
}
server
{
   listen 80;
   server_name www.itbiancheng.com;
   root /nginx;
   location /
   {
      add_header Access-Control-Allow-Origin $corsHost;
   }
}

参考资料

https://www.itbiancheng.com/linux/4826.html

posted on 2022-03-23 16:43  白首码农  阅读(4343)  评论(0编辑  收藏  举报