Last active
May 13, 2016 19:59
-
-
Save tzmartin/fe5ea0f3ce8d3364035f75280394a167 to your computer and use it in GitHub Desktop.
iOS9 App Transport Security configuration - https://mobile.awsblog.com/post/Tx2QM69ZE6BGTYX/Preparing-Your-Apps-for-iOS-9
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>amazonaws.com</key> | |
<dict> | |
<key>NSThirdPartyExceptionMinimumTLSVersion</key> | |
<string>TLSv1.0</string> | |
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key> | |
<false/> | |
<key>NSTemporaryExceptionRequiresForwardSecrecy</key> | |
<false/> | |
<key>NSTemporaryExceptionMinimumTLSVersion</key> | |
<string>1.0</string> | |
<key>NSIncludesSubdomains</key> | |
<true/> | |
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key> | |
<true/> | |
<key>NSExceptionRequiresForwardSecrecy</key> | |
<false/> | |
</dict> | |
<key>amazonaws.com.cn</key> | |
<dict> | |
<key>NSThirdPartyExceptionMinimumTLSVersion</key> | |
<string>TLSv1.0</string> | |
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key> | |
<false/> | |
<key>NSIncludesSubdomains</key> | |
<true/> | |
</dict> | |
</dict> | |
</dict> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment