diff options
| author | Bug Magnet <marco.nikic@mullvad.net> | 2023-09-01 13:05:04 +0200 |
|---|---|---|
| committer | Bug Magnet <marco.nikic@mullvad.net> | 2023-09-01 13:05:04 +0200 |
| commit | 0a2034ca7ecb594a1d12f9b543fedfa474aced64 (patch) | |
| tree | 11eccd3e7736d4673390684324c95b17949d4a13 /ios | |
| parent | ab84091be08e2c947adf7849ed7c0af34ec8795b (diff) | |
| download | mullvadvpn-0a2034ca7ecb594a1d12f9b543fedfa474aced64.tar.xz mullvadvpn-0a2034ca7ecb594a1d12f9b543fedfa474aced64.zip | |
Override ATS for our API endpoint and Shadowsocks
Diffstat (limited to 'ios')
| -rw-r--r-- | ios/MullvadVPN/Supporting Files/Info.plist | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ios/MullvadVPN/Supporting Files/Info.plist b/ios/MullvadVPN/Supporting Files/Info.plist index 172b9ffd25..e58eb47985 100644 --- a/ios/MullvadVPN/Supporting Files/Info.plist +++ b/ios/MullvadVPN/Supporting Files/Info.plist @@ -69,6 +69,24 @@ <string>UIInterfaceOrientationLandscapeLeft</string> <string>UIInterfaceOrientationLandscapeRight</string> </array> + <key>NSAppTransportSecurity</key> + <dict> + <key>NSAllowsArbitraryLoads</key> + <true/> + <key>NSExceptionDomains</key> + <dict> + <key>127.0.0.1</key> + <dict> + <key>NSExceptionAllowsInsecureHTTPLoads</key> + <true/> + </dict> + <key>45.83.223.196</key> + <dict> + <key>NSExceptionAllowsInsecureHTTPLoads</key> + <true/> + </dict> + </dict> + </dict> <key>OSLogPreferences</key> <dict> <key>com.apple.VectorKit</key> |
