如何在nginx配置中获取头文件Access-Control-Allow-Credentials的多个URL?

时间:2015-09-24 12:10:43

标签: nginx

我对nginxserver使用以下配置:

server {
    .....
    .....

location / {

    if ($request_method = 'OPTIONS') {
       add_header 'Access-Control-Allow-Origin' 'http://www.domain1.com';      
       add_header 'Access-Control-Allow-Credentials' 'true';
       add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
       add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,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;
       return 204;
    }
    if ($request_method = 'POST') {
       add_header 'Access-Control-Allow-Origin' 'http://www.domain1.com';
   add_header 'Access-Control-Allow-Credentials' 'true';
       add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
       add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
    }
    if ($request_method = 'GET') {
       add_header 'Access-Control-Allow-Origin' 'http://www.domain1.com';
       add_header 'Access-Control-Allow-Credentials' 'true';
       add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
       add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
    }

}

我想在标题中添加更多域名

'Access-Control-Allow-Origin' 'http://www.domain2.com';

但是当我添加代码时:

if ($http_origin = "https://www.domain1.com") {
          add_header 'Access-Control-Allow-Origin' $http_origin;
    }
if ($http_origin = "https://www.domain2.com") {
          add_header 'Access-Control-Allow-Origin' $http_origin;
    }

它不起作用。

0 个答案:

没有答案