-
-
Notifications
You must be signed in to change notification settings - Fork 999
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
71 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
<!-- Adobe DTD for cross-domain policy files --> | ||
<!-- Copyright (c) 2008-2009, Adobe Systems Inc. --> | ||
|
||
<!ELEMENT cross-domain-policy (site-control?,allow-access-from*,allow-http-request-headers-from*,allow-access-from-identity*)> | ||
|
||
<!ELEMENT site-control EMPTY> | ||
<!ATTLIST site-control permitted-cross-domain-policies (all|by-content-type|by-ftp-filename|master-only|none) #REQUIRED> | ||
|
||
<!ELEMENT allow-access-from EMPTY> | ||
<!ATTLIST allow-access-from domain CDATA #REQUIRED> | ||
<!ATTLIST allow-access-from to-ports CDATA #IMPLIED> | ||
<!ATTLIST allow-access-from secure (true|false) "true"> | ||
|
||
<!ELEMENT allow-http-request-headers-from EMPTY> | ||
<!ATTLIST allow-http-request-headers-from domain CDATA #REQUIRED> | ||
<!ATTLIST allow-http-request-headers-from headers CDATA #REQUIRED> | ||
<!ATTLIST allow-http-request-headers-from secure (true|false) "true"> | ||
|
||
<!ELEMENT allow-access-from-identity (signatory)> | ||
|
||
<!ELEMENT signatory (certificate)> | ||
|
||
<!ELEMENT certificate EMPTY> | ||
<!ATTLIST certificate fingerprint CDATA #IMPLIED> | ||
<!ATTLIST certificate fingerprint-algorithm CDATA #IMPLIED> | ||
|
||
<!-- End of file. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"> | ||
<?xml version="1.0"?> | ||
<!DOCTYPE cross-domain-policy SYSTEM "cross-domain-policy.dtd"> | ||
<cross-domain-policy> | ||
<site-control permitted-cross-domain-policies="all"/> | ||
<allow-access-from domain="*" to-ports="1935"/> | ||
<allow-http-request-headers-from domain="*" headers="*"/> | ||
<site-control permitted-cross-domain-policies="all"/> | ||
<allow-access-from domain="*" to-ports="1935"/> | ||
<allow-http-request-headers-from domain="*" headers="*"/> | ||
<allow-access-from-identity> | ||
<signatory> | ||
<certificate/> | ||
</signatory> | ||
</allow-access-from-identity> | ||
</cross-domain-policy> |