Skip to content

Commit d641d5f

Browse files
committed
Minor procedure update
1 parent 354b72e commit d641d5f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

articles/azure-functions/functions-create-serverless-api.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: mattchenderson
55
ms.author: mahender
66
ms.service: azure-functions
77
ms.topic: how-to
8-
ms.date: 06/17/2024
8+
ms.date: 06/27/2024
99
ms.custom: mvc
1010

1111
#Customer intent: As a developer, I want to customize HTTP trigger endpoints in Azure Functions so that I can build a highly scalable API.
@@ -92,12 +92,14 @@ Repeat the steps in [Create a function app](./functions-create-function-app-port
9292
1. Navigate to your new frontend function app in the portal.
9393
1. Expand **Settings**, and then select **Environment variables**.
9494
1. Select the **App settings** tab, where key/value pairs are stored.
95-
1. Create a new setting with the key `HELLO_HOST`. Set its value to the host of your backend function app, such as `<YourBackendApp>.azurewebsites.net`. This value is part of the URL that you copied earlier when you tested your HTTP function. You later reference this setting in the configuration.
95+
1. Select **+ Add** to create a new setting. Enter **HELLO_HOST** for its **Name** and set its **Value** to the host of your backend function app, such as `<YourBackendApp>.azurewebsites.net`.
96+
97+
This value is part of the URL that you copied earlier when you tested your HTTP function. You later reference this setting in the configuration.
9698

9799
> [!NOTE]
98100
> It's recommended that you use app settings for the host configuration to prevent a hard-coded environment dependency for the proxy. Using app settings means that you can move the proxy configuration between environments, and the environment-specific app settings will be applied.
99101
100-
1. Select **Apply**.
102+
1. Select **Apply** to save the new setting. On the **App settings** tab, select **Apply**, and then select **Confirm** to restart the function app.
101103

102104
### Create a proxy on the frontend
103105

0 commit comments

Comments
 (0)