You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 20, 2025. It is now read-only.
In order to effectively make use of the `Staging` and `Production` deployments that were created along with your CodePush app, refer to the [multi-deployment testing](../README.md#multi-deployment-testing) docs below before actually moving your app's usage of CodePush into production.
120
+
121
+
### HTTP exception domains configuration (iOS)
122
+
123
+
CodePush plugin makes HTTPS requests to the following domains:
124
+
125
+
- codepush.azurewebsites.net
126
+
- codepush.blob.core.windows.net
127
+
- codepushupdates.azureedge.net
128
+
129
+
If you want to change the default HTTP security configuration for any of these domains, you have to define the [`NSAppTransportSecurity` (ATS)][ats] configuration inside your __Info.plist__ file:
130
+
131
+
```xml
132
+
<plistversion="1.0">
133
+
<dict>
134
+
<!-- ...other configs... -->
135
+
136
+
<key>NSAppTransportSecurity</key>
137
+
<dict>
138
+
<key>NSExceptionDomains</key>
139
+
<dict>
140
+
<key>codepush.azurewebsites.net</key>
141
+
<dict><!-- read the ATS Apple Docs for available options --></dict>
142
+
</dict>
143
+
</dict>
144
+
145
+
<!-- ...other configs... -->
146
+
</dict>
147
+
</plist>
148
+
```
149
+
150
+
Before doing anything, please [read the docs][ats] first.
0 commit comments