-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrossdomain.xml
22 lines (19 loc) · 883 Bytes
/
crossdomain.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<!-- Read this: www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html -->
<!-- Most restrictive policy: -->
<site-control permitted-cross-domain-policies="none"/>
<allow-http-request-headers-from domain="*.idalibre.com" headers="*"/>
<!-- Least restrictive policy: -->
<!--
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="*" to-ports="*" secure="false"/>
<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
-->
<!--
<site-control permitted-cross-domain-policies="master-only"/>
<allow-access-from domain="*.idalibre.com"/>
<allow-http-request-headers-from domain="*.idalibre.com" headers="SOAPAction"/>
-->
</cross-domain-policy>