Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to allow multiple cross-domains using the Access-Control-Allow-Origin header?

I'm aware of the *, but it is too open. I really want to allow just a couple domains.

As an example, something like this:

Access-Control-Allow-Origin: http://domain1.com, http://domain2.com

I have tried the above code but it doesn't seem to work in Firefox.

Is it possible to specify multiple domains or am I stuck with just one?

share|improve this question
9  
You should separate the domains using a space, not a comma. See tools.ietf.org/html/draft-abarth-origin-09#section-6.1 – Nicholas Wilson May 19 '11 at 22:08

11 Answers

up vote 122 down vote accepted

Sounds like the recommended way to do it is to have your server read the Origin header from the client, compare that to the list of domains you'd like to allow, and if it matches, echo the value of the Origin header back to the client as the Access-Control-Allow-Origin header in the response.

share|improve this answer
12  
This matches what the W3C suggests -- w3.org/TR/cors/#access-control-allow-origin-response-hea – Simon B. Nov 10 '10 at 17:22
16  
My problem with this answer is it doesn't really help me, because we use a CDN, and obviously we can't control how the CDN sets headers programatically. – B T Apr 5 '11 at 0:00
1  
As @BT notes this isn't a great solution because it doesn't work over a CDN. With that said, if you still want to do it there are two typical CDN configurations. In the first, you use your server as an origin server. In that case specifying a simple * (while not ideal) would work. The CDN would cache this header along with whatever else you send and serve it to the client. In the second, you use a remote (CDN managed) server as the origin. In this case you should configure the CDN to send back a custom HTTP header for this content. (Again, you'd specify *) – genexp May 1 '12 at 18:39
7  
any actual example would be appreciated – chriz Jul 19 '12 at 22:17
2  
If caches or CDNs are a concern, use the Vary header to tell the cache/CDN to keep separate responses for different Origin request header values. You would include a header like "Vary: Origin" in your response. The cache/CDN then knows that it should send one response to a request with header "Origin: foo.example.com";, and a different response to a request with header "Origin: bar.example.com";. – Sean Jan 11 at 17:34
show 6 more comments

The answer seems to be to use the header more than once. That is, rather than sending

Access-Control-Allow-Origin: http://domain1.com, http://domain2.com, http://domain3.com

send

Access-Control-Allow-Origin: http://domain1.com
Access-Control-Allow-Origin: http://domain2.com
Access-Control-Allow-Origin: http://domain3.com

On Apache, you can do this in an httpd.conf <VirtualHost> section or .htaccess file using mod_headers and this syntax:

Header add Access-Control-Allow-Origin "http://domain1.com"
Header add Access-Control-Allow-Origin "http://domain2.com"
Header add Access-Control-Allow-Origin "http://domain3.com"

The trick is to use add rather than append as the first argument.

share|improve this answer
The trick looks promising, but it doesn't work in FF 3.6.13. What I observe is that two headers with the same name are joined into one, with values separated with a comma -- and it doesn't work, as OP posted. I observed the headers in LiveHTTPHeaders and FireBug. – pwes Feb 10 '11 at 12:38
1  
See, when I did it, I did "Header set ..." rather than "Header add ..." - seems to work for me. Firefox 3.6.16 – B T Apr 4 '11 at 23:50
@BT, which worked for you? Header set or Header add? – Nathan J. Brauer Aug 7 '12 at 15:08
This is not allowed and does not work in FF - bugzilla.mozilla.org/show_bug.cgi?id=671608 – Sairam Aug 27 '12 at 18:38
there's a variation on this which seems to work: stackoverflow.com/questions/9466496/… – Jack Apr 28 at 7:58

I had the same problem with woff-fonts, multiple subdomains had to have acces. To allow subdomains I added something lige this to my httpd.conf:

SetEnvIf Origin "^(.*\.example\.com)$" ORIGIN_SUB_DOMAIN=$1
<FilesMatch "\.woff$">
    Header set Access-Control-Allow-Origin "%{ORIGIN_SUB_DOMAIN}e" env=ORIGIN_SUB_DOMAIN
</FilesMatch>

For multiple domains you could just change the regex in SetEnvIf

share|improve this answer
1  
Works like a charm. This should be the accepted answer. – Dmitry Leskov Mar 18 '12 at 4:07
1  
Did the trick. Just make sure you adapt the regular expression correctly. I needed to add a question mark to allow the domain itself, e.g. (.*\.?example\.org) for example.com and sub.example.com. – wdso Apr 19 '12 at 13:55

Another solution I'm using in PHP:

$http_origin = $_SERVER['HTTP_ORIGIN'];

if ($http_origin == "http://www.domain1.com" || $http_origin == "http://www.domain2.com" || $http_origin == "http://www.domain3.info")
{  
    header('Access-Control-Allow-Origin: *');
}
share|improve this answer
5  
Why not use the approach suggested in stackoverflow.com/a/1850482/11635 [and dont sent a wildcard, just the requested origin] ? This is just more permissive without achieving anything more? – Ruben Bartelink Jun 11 '12 at 10:54
3  
having header('Access-Control-Allow-Origin: *') sometimes says cannot use wild card if credentials flag is true - happens when header('Access-Control-Allow-Credentials: true')probably. So, better to Allow-Origin the $http_origin itself if the conditions are met – syedrakib Dec 25 '12 at 21:40

This worked for me:

SetEnvIf Origin "^http(s)?://(.+\.)?(domain\.org|domain2\.com)$" origin_is=$0 
Header always set Access-Control-Allow-Origin %{origin_is}e env=origin_is

put in .htaccess

it will work for sure.

Cheers!!

share|improve this answer
This is a great solution, thanks. – aiham Dec 11 '12 at 12:28

There is one disadvantage you should be aware of: As soon as you out-source files to a CDN (or any other server which doesn't allow scripting) or if your files are cached on a proxy, altering response based on 'Origin' request header will not work.

share|improve this answer
2  
Could you elaborate on this, or point us somewhere we can look for more info? I'm looking to do just that with Limelight, and I'm hoping you're wrong. One of our tech ops guys said that as long as our CDN seed server sends the header, the CDN itself will send it. Have yet to test it out – B T Apr 4 '11 at 23:52
If caches or CDNs are a concern, use the Vary header to tell the cache/CDN to keep separate responses for different Origin request header values. You would include a header like "Vary: Origin" in your response. The cache/CDN then knows that it should send one response to a request with header "Origin: foo.example.com";, and a different response to a request with header "Origin: bar.example.com";. – Sean Jan 11 at 18:32

Here's how to echo the Origin header back if it matches your domain with Nginx, this is useful if you want to serve a font multiple sub-domains:

location /fonts {
    # this will echo back the origin header
    if ($http_origin ~ "example.org$") {
        add_header "Access-Control-Allow-Origin" $http_origin;
    }
}
share|improve this answer

Here is what i did for a PHP application which is being requested by AJAX

$request_headers        = apache_request_headers();
$http_origin            = $request_headers['Origin'];
$allowed_http_origins   = array(
                            "http://myDumbDomain.com"   ,
                            "http://anotherDumbDomain.com"  ,
                            "http://localhost"  ,
                          );
if (in_array($http_origin, $allowed_http_origins)){  
    @header("Access-Control-Allow-Origin: " . $http_origin);
}

If the requesting origin is allowed by my server, return the $http_origin itself as value of the Access-Control-Allow-Origin header instead of returning a * wildcard,

share|improve this answer

Maybe I'm wrong .. but as far as I can see Access-Control-Allow-Origin has an "origin-list" as parameter.

By definition an origin-list is:

origin            = "origin" ":" 1*WSP [ "null" / origin-list ]
origin-list       = serialized-origin *( 1*WSP serialized-origin )
serialized-origin = scheme "://" host [ ":" port ]
                  ; <scheme>, <host>, <port> productions from RFC3986

And from this I argue different origins are admitted and should be space separated ...

share|improve this answer
1  
That does seem to be a correct interpretation of the spec; that said, the spec does not seem to be fully supported by current browsers (for example, I just tested this on Firefox 17.0 and confirmed that it will not work). – RookieRick Dec 3 '12 at 23:59
The CORS specification section 5.1 Access-Control-Allow-Origin Response Header states that origin-list is constrained: Rather than allowing a space-separated list of origins, it is either a single origin or the string "null". – maxpolk Feb 18 at 16:19

HTTP_ORIGIN is not used by all browsers. How secure HTTP_ORIGIN is? For me it comes up empty in FF.
I have the sites that I allow access to my site send over a site ID, I then check my DB for the record with that id and get the SITE_URL column value (www.yoursite.com).

header('Access-Control-Allow-Origin: http://'.$row['SITE_URL']);

Even if the send over a valid site ID the request needs to be from the domain listed in my DB associated with that site ID.

share|improve this answer

Delimit them with a pipe character rather than a comma, as in this example:

https://developer.mozilla.org/En/HTTP_Access_Control

share|improve this answer
7  
do you mean Access-Control-Allow-Origin: <origin> | *? That simply means exact origin or asterisk for all. Hence I don't think there is a way to specify multiple domains - at least it's not shown in this example. – sfussenegger Oct 28 '10 at 9:40
The webpage you mention specifies to use comma, but... that doesn't work (FF 3.6.13). – pwes Feb 7 '11 at 11:19
Moreover, it sends the reader to w3.org/TR/cors, which sends the reader to tools.ietf.org/html/draft-abarth-origin, which points out that the origins should be separated with SP (=space) character. And it still doesn't work... – pwes Feb 7 '11 at 11:25

protected by Community Jun 13 '12 at 11:10

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.