Created
October 14, 2015 14:35
-
-
Save juliengdt/2c6b8809353ece3d7bf1 to your computer and use it in GitHub Desktop.
Apple ATS Workarounds
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
<!--Allow unsecured connections in a whitelist--> | |
<key>NSAppTransportSecurity</key> | |
<dict> | |
<key>NSExceptionDomains</key> | |
<dict> | |
<key>yourserver.com</key> | |
<dict> | |
<!--Include to allow subdomains--> | |
<key>NSIncludesSubdomains</key> | |
<true/> | |
<!--Include to allow HTTP requests--> | |
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key> | |
<true/> | |
<!--Include to specify minimum TLS version--> | |
<key>NSTemporaryExceptionMinimumTLSVersion</key> | |
<string>TLSv1.1</string> | |
</dict> | |
</dict> | |
</dict> | |
<!--OR--> | |
<!--Allow unsecured connections everywhere, yerk--> | |
<key>NSAppTransportSecurity</key> | |
<dict> | |
<!--Include to allow all connections (DANGER)--> | |
<key>NSAllowsArbitraryLoads</key> | |
<true/> | |
</dict> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment