Skip to content

Commit 4ed0d44

Browse files
committed
Clarify disabling FTP
1 parent a1837e3 commit 4ed0d44

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

articles/azure-functions/functions-deployment-technologies.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ Use cloud sync to sync your content from Dropbox and OneDrive to Azure Functions
187187
188188
>__Where app content is stored:__ The app content is in the cloud store, but a local copy is stored on the app file system, which may be backed by Azure Files from the storage account specified when the function app was created.
189189
190-
### FTPS
190+
### FTP/S
191191

192-
You can use FTPS to directly transfer files to Azure Functions, although this deployment method isn't recommended. Because using FTP, which is unencrypted, can expose your deployment credentials, you should only use FTPS.
192+
You can use FTP/S to directly transfer files to Azure Functions, although this deployment method isn't recommended. When you're not planning on using FTP, you should disable it. If you do choose to use FTP, you should enforce FTPS. To learn how in the Azure portal, see [Enforce FTPS](../app-service/deploy-ftp.md#enforce-ftps).
193193

194194
>__How to use it:__ Follow the instructions in [FTPS deployment settings](functions-how-to-use-azure-function-app-settings.md#ftps-deployment-settings) to get the URL and credentials you can use to deploy to your function app using FTPS.
195195

articles/azure-functions/functions-how-to-use-azure-function-app-settings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ These settings are stored encrypted. To learn more, see [Application settings se
3535

3636
Application settings can be managed from the [Azure portal](functions-how-to-use-azure-function-app-settings.md?tabs=portal#settings) and by using the [Azure CLI](functions-how-to-use-azure-function-app-settings.md?tabs=azurecli#settings) and [Azure PowerShell](functions-how-to-use-azure-function-app-settings.md?tabs=powershell#settings). You can also manage application settings from [Visual Studio Code](functions-develop-vs-code.md#application-settings-in-azure) and from [Visual Studio](functions-develop-vs.md#function-app-settings).
3737

38-
# [Portal](#tab/portal)
38+
### [Portal](#tab/portal)
3939

4040
To find the application settings, see [Get started in the Azure portal](#get-started-in-the-azure-portal).
4141

@@ -44,7 +44,7 @@ To add a setting in the portal, select **New application setting** and add the n
4444

4545
![Function app settings in the Azure portal.](./media/functions-how-to-use-azure-function-app-settings/azure-function-app-settings-tab.png)
4646

47-
# [Azure CLI](#tab/azure-cli)
47+
### [Azure CLI](#tab/azure-cli)
4848

4949
The [`az functionapp config appsettings list`](/cli/azure/functionapp/config/appsettings#az-functionapp-config-appsettings-list) command returns the existing application settings, as in the following example:
5050

@@ -62,7 +62,7 @@ az functionapp config appsettings set --name <FUNCTION_APP_NAME> \
6262
--settings CUSTOM_FUNCTION_APP_SETTING=12345
6363
```
6464

65-
# [Azure PowerShell](#tab/azure-powershell)
65+
### [Azure PowerShell](#tab/azure-powershell)
6666

6767
The [`Get-AzFunctionAppSetting`](/powershell/module/az.functions/get-azfunctionappsetting) cmdlet returns the existing application settings, as in the following example:
6868

articles/azure-functions/security-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ At this time, Key Vault isn't supported for deployment credentials. To learn mor
217217

218218
By default, each function app has an FTP endpoint enabled. The FTP endpoint is accessed using deployment credentials.
219219

220-
FTP isn't recommended for deploying your function code. FTP deployments are manual, and they require you to synchronize triggers. To learn more, see [FTP deployment](functions-deployment-technologies.md#ftp).
220+
FTP isn't recommended for deploying your function code. FTP deployments are manual, and they require you to synchronize triggers. To learn more, see [FTP deployment](functions-deployment-technologies.md#ftps).
221221

222222
When you're not planning on using FTP, you should disable it in the portal. If you do choose to use FTP, you should [enforce FTPS](../app-service/deploy-ftp.md#enforce-ftps).
223223

includes/functions-download-publish-profile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ To download the publishing profile of your function app:
1010

1111
1. Select the function app's **Overview** page, and then select **Get publish profile**.
1212

13-
:::image type="content" source="media/functions-how-to-github-actions/get-publish-profile.png" alt-text="Download publish profile":::
13+
:::image type="content" source="../articles/azure-functions/media/functions-how-to-github-actions/get-publish-profile.png" alt-text="Download publish profile":::
1414

1515
1. Save and copy the contents of the file.

0 commit comments

Comments
 (0)