konstantinbueschel
11/18/2016 - 4:15 PM

Multiple exceptions for iOS 9 App Transport Security - From http://skypanther.com/2015/09/multiple-exceptions-for-ios-9-app-transport-securi

Multiple exceptions for iOS 9 App Transport Security - From http://skypanther.com/2015/09/multiple-exceptions-for-ios-9-app-transport-security

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSExceptionDomains</key>
    <dict>  
        <key>myinsecuresite.com</key>  
        <dict>  
            <key>NSExceptionAllowsInsecureHTTPLoads</key>  
            <true/>  
            <key>NSIncludesSubdomains</key>
            <true/>
        </dict>  
        <key>myotherinsecuresite.com</key>  
        <dict>  
            <key>NSExceptionAllowsInsecureHTTPLoads</key>  
            <true/>  
            <key>NSIncludesSubdomains</key>
            <true/>
        </dict>  
        <key>localhost</key>  
        <dict>  
            <key>NSExceptionAllowsInsecureHTTPLoads</key>  
            <true/>  
        </dict>  
        <key>127.0.0.1</key>  
        <dict>  
            <key>NSExceptionAllowsInsecureHTTPLoads</key>  
            <true/>  
        </dict>  
    </dict>  
</dict>