Created
October 18, 2017 18:07
-
-
Save oprearocks/ee562e27918752cd869b96278d46812c to your computer and use it in GitHub Desktop.
Workaround for iOS 9 to ignore insecure SSL certificates of QiNiu CDN servers. See https://developer.apple.com/library/prerelease/ios/technotes/App-Transport-Security-Technote/index.html#//apple_ref/doc/uid/TP40016240-CH1-SW5
This file contains hidden or 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
<key>NSAppTransportSecurity</key> | |
<dict> | |
<key>NSExceptionDomains</key> | |
<dict> | |
<key>qbox.me</key> | |
<dict> | |
<key>NSIncludesSubdomains</key> | |
<true/> | |
<key>NSExceptionAllowsInsecureHTTPLoads</key> | |
<true/> | |
<key>NSThirdPartyExceptionMinimumTLSVersion</key> | |
<string>TLSv1.0</string> | |
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key> | |
<false/> | |
</dict> | |
</dict> | |
</dict |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment