Nginx和CORS问题

时间:2015-09-13 13:55:54

标签: javascript nginx xmlhttprequest cross-domain cors

我试图在我的nginx服务器上设置cors。

我已将此设置为我的虚拟主机设置到位置部分:

 if ($request_method = 'OPTIONS') {
    add_header 'Access-Control-Allow-Origin' 'http://client.cors-api.appspot.com';
    #
    add_header 'Access-Control-Allow-Credentials' 'true';
    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
    #
    # Custom headers and headers various browsers *should* be OK with but aren't
    #
    add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
    #
    # Tell client that this pre-flight info is valid for 20 days
    #
    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://client.cors-api.appspot.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://client.cors-api.appspot.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';
 }

似乎一切正常,但是当我尝试启动cors测试时,我收到了XMLHttpRequest错误:

  

XMLHttpRequest无法加载http://xxxxxx.xxx/。 No' Access-Control-Allow-Origin'标头出现在请求的资源上。起源' http://client.cors-api.appspot.com'因此不允许访问。

似乎OPTIONS方法传递正常,但GET以错误结束。它可能是什么?

nginx版本:nginx / 1.4.6(Ubuntu)

2 个答案:

答案 0 :(得分:0)

我假设你在add_header中有其他location指令。如果是这样,可能会出现意外行为。

看看这个例子:

location /somelocation {
    add_header      "Header 1"      "Value 1";

    set $a 1;
    if ($a = 1) {
        add_header      "Header 2"      "Value 2";
    }

    set $b 2;
    if ($b = 2) {
        add_header      "Header 3"      "Value 3";
    }

    return    200    "Some response\n";
}

在这种情况下,只有Header 3会附加到响应中。这就是标准ngx_headers模块的工作原理。

您可以考虑使用ngx_headers_more module重新编译Nginx,以便在使用标头时获得更多自由,或者使用Nginx设置CORS标头,但使用编程语言编写后端。

答案 1 :(得分:0)

上帝该死的!我没有注意到另一个带有php-fpm设置的位置部分,所以它用空设置覆盖了我的cors。

现在一切都很好,谢谢你的回答。 @Curious,你对nginx编译你也是对的。