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
-[How can I connect to FTP/S in App Service via passive mode?](#how-can-i-connect-to-ftps-in-azure-app-service-via-passive-mode)
109
-
-[How can I determine what method was used to deploy my app?](#how-can-i-determine-what-method-was-used-to-deploy-my-app)
110
108
-[What can happen to my app during deployment?](#what-can-happen-to-my-app-during-deployment)
111
109
-[What's the first step in troubleshooting FTP/S deployment?](#whats-the-first-step-in-troubleshooting-ftps-deployment)
112
110
-[Why can't I FTP/S and publish my code?](#why-cant-i-ftps-and-publish-my-code)
111
+
-[How can I connect to FTP/S in App Service via passive mode?](#how-can-i-connect-to-ftps-in-azure-app-service-via-passive-mode)
113
112
-[Why does my connection fail when attempting to connect over FTPS using explicit encryption?](#why-does-my-connection-fail-when-attempting-to-connect-over-ftps-using-explicit-encryption)
114
-
115
-
### How can I connect to FTP/S in Azure App Service via passive mode?
116
-
117
-
Azure App Service supports connecting via both active and passive modes. Passive mode is preferred because deployment machines are usually behind a firewall in the operating system or as part of a home or business network. For an example of a passive mode connection, see [The Connection Page (Advanced Site Settings dialog)](https://winscp.net/docs/ui_login_connection).
118
-
119
-
### How can I determine what method was used to deploy my app?
120
-
121
-
You can find out how an app was deployed by checking the application settings on its Azure portal page. Select **Environmental variables** under **Settings** in the left navigation menu. On the **App settings** tab:
122
-
123
-
- If the app was deployed using an external package URL, the `WEBSITE_RUN_FROM_PACKAGE` setting appears in the application settings with a URL value.
124
-
- If the app was deployed using ZIP deploy, the `WEBSITE_RUN_FROM_PACKAGE` setting appears with a value of `1`.
125
-
126
-
If you deployed the app using Azure DevOps, you can see the deployment history in the Azure DevOps portal. If you used Azure Functions Core Tools, you can see the deployment history in the Azure portal.
113
+
-[How can I determine what method was used to deploy my app?](#how-can-i-determine-what-method-was-used-to-deploy-my-app)
[!INCLUDE [What can happen to my app during deployment?](../../includes/app-service-deploy-atomicity.md)]
@@ -144,7 +131,11 @@ Check that you entered the correct [hostname](#get-the-ftps-endpoint) and [crede
144
131
145
132
- FTP/S control connection ports: `21`, `990`
146
133
- FTP/S data connection ports: `989`, `10001-10300`
147
-
134
+
135
+
### How can I connect to FTP/S in Azure App Service via passive mode?
136
+
137
+
Azure App Service supports connecting via both active and passive modes. Passive mode is preferred because deployment machines are usually behind a firewall in the operating system or as part of a home or business network. For an example of a passive mode connection, see [The Connection Page (Advanced Site Settings dialog)](https://winscp.net/docs/ui_login_connection).
138
+
148
139
### Why does my connection fail when attempting to connect over FTPS using explicit encryption?
149
140
150
141
FTPS allows establishing an explicit or implicit TLS secure connection.
@@ -156,6 +147,15 @@ The URL format you use can affect your connection success, and depends on your c
156
147
157
148
Make sure not to mix the settings, such as attempting to connect to `ftps://` by using port `21`. This setting fails to connect even using explicit encryption, because an explicit connection starts as a plain FTP connection before the `AUTH` method.
158
149
150
+
### How can I determine what method was used to deploy my app?
151
+
152
+
You can find out how an app was deployed by checking the application settings on its Azure portal page. Select **Environmental variables** under **Settings** in the left navigation menu. On the **App settings** tab:
153
+
154
+
- If the app was deployed using an external package URL, the `WEBSITE_RUN_FROM_PACKAGE` setting appears in the application settings with a URL value.
155
+
- If the app was deployed using ZIP deploy, the `WEBSITE_RUN_FROM_PACKAGE` setting appears with a value of `1`.
156
+
157
+
If you deployed the app using Azure DevOps, you can see the deployment history in the Azure DevOps portal. If you used Azure Functions Core Tools, you can see the deployment history in the Azure portal.
158
+
159
159
## Related resources
160
160
161
161
-[Local Git deployment to Azure App Service](deploy-local-git.md)
0 commit comments