Created
July 4, 2018 11:52
-
-
Save partho-maple/51c6b834d0168a9f43efd665a2bfd9d9 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