From 5707e66719f17eff13be08dc0d192763e92499be Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Mon, 9 Mar 2015 18:40:18 -0300 Subject: [PATCH] Add crossdomain.xml --- nginx.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nginx.conf b/nginx.conf index 7a8dcf7..e9f787c 100644 --- a/nginx.conf +++ b/nginx.conf @@ -55,5 +55,17 @@ http { location /static { alias /static; } + + location /crossdomain.xml { + default_type text/xml; + return 200 ' + + + + + + '; + expires 24h; + } } }