up vote 34 down vote favorite
12
share [g+] share [fb]

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?

link|improve this question
3  
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
feedback

7 Answers

up vote 25 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.

link|improve this answer
Great! I didn't even think of doing that. – Thomas J Bradley Dec 5 '09 at 4:04
3  
This matches what the W3C suggests -- w3.org/TR/cors/#access-control-allow-origin-response-hea – Simon B. Nov 10 '10 at 17:22
3  
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
feedback

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.

link|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
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
feedback

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

link|improve this answer
feedback

Just FYI:

http://feedback.rackspacecloud.com/forums/71021-product-feedback/suggestions/1155197-add-ability-to-serve-custom-http-headers-with-cdn-

If you are using a CDN like Akamai, right now there is no way to add new custom headers like "Access-Control-Allow-Origin".

Please vote in this link to make them notice the importance of this feature.

link|improve this answer
feedback

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.

link|improve this answer
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
feedback

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: *');
}
link|improve this answer
feedback

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

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

link|improve this answer
3  
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
feedback

Your Answer

 
or
required, but never shown

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