Skip to content

Instantly share code, notes, and snippets.

@AysadKozanoglu
Forked from rbranson/crossdomain.conf
Created January 30, 2017 01:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AysadKozanoglu/e892b930f92a738f1cc4e627cb1d6895 to your computer and use it in GitHub Desktop.
Save AysadKozanoglu/e892b930f92a738f1cc4e627cb1d6895 to your computer and use it in GitHub Desktop.
nginx Flash XML policy server
# Add this to your nginx.conf under http { }
server {
listen 843;
server_name localhost;
location / {
rewrite ^(.*)$ /crossdomain.xml;
}
error_page 400 /crossdomain.xml;
location = /crossdomain.xml {
root /var/www/crossdomain;
}
}
# In /var/www/crossdomain, create a crossdomain.xml file:
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*" secure="false" to-ports="*"/>
<site-control permitted-cross-domain-policies="master-only" />
</cross-domain-policy>
@AysadKozanoglu
Copy link
Author

this works nice for me . nginx 1.10.2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment