Skip to content

Commit

Permalink
Updatined crossdomain.xml to deal with the kdp3 being delivered from …
Browse files Browse the repository at this point in the history
…an alternative domain.
  • Loading branch information
sdreher committed Dec 8, 2011
1 parent 10bacaa commit 357e911
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions crossdomain.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">

<cross-domain-policy>
<site-control permitted-cross-domain-policies="master-only"/>
<allow-access-from domain="localhost"/>
<allow-access-from domain="127.0.0.1"/>
<allow-access-from domain="*.ccnmtl.columbia.edu"/>
<allow-access-from domain="*.youtube.com"/>
<allow-access-from domain="*.vimeo.com"/>
<allow-access-from domain="*.kaltura.com"/>
<allow-access-from domain="localhost" secure="false" />
<allow-access-from domain="*.kaltura.com.edgesuite.net" />
<allow-access-from domain="127.0.0.1" secure="false" />
<allow-access-from domain="*.ccnmtl.columbia.edu" secure="false" />
<allow-access-from domain="*.youtube.com" secure="false" />
<allow-access-from domain="*.vimeo.com" secure="false" />
<allow-access-from domain="*.kaltura.com" secure="false" />

<allow-http-request-headers-from domain="127.0.0.1" headers="*"/>
<allow-http-request-headers-from domain="localhost" headers="*"/>
<allow-http-request-headers-from domain="*.ccnmtl.columbia.edu" headers="*"/>
<allow-http-request-headers-from domain="*.youtube.com" headers="*"/>
<allow-http-request-headers-from domain="*.vimeo.com" headers="*"/>
<allow-http-request-headers-from domain="*.kaltura.com" headers="*"/>
<allow-http-request-headers-from domain="*.kaltura.com.edgesuite.net" headers="*" />
</cross-domain-policy>

0 comments on commit 357e911

Please sign in to comment.