Add crossdomain.xml

This commit is contained in:
Orne Brocaar 2015-03-09 18:40:18 -03:00
parent 3152ffacaa
commit 5707e66719

View File

@ -55,5 +55,17 @@ http {
location /static { location /static {
alias /static; alias /static;
} }
location /crossdomain.xml {
default_type text/xml;
return 200 '<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="*" secure="false"/>
<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
</cross-domain-policy>';
expires 24h;
}
} }
} }