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
Copy file name to clipboardExpand all lines: articles/api-management/how-to-deploy-self-hosted-gateway-container-apps.md
+14-3Lines changed: 14 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@ This command creates:
136
136
137
137
1. Sign in to the [Azure portal](https://portal.azure.com), and navigate to your API Management instance.
138
138
1. In the left menu, under **Deployment and infrastructure**, select**Gateways**.
139
-
1. Check the **Status** of your gateway. If the gateway is healthy, it reports regular gateway heartbeats.
139
+
1. On the **Overview** page, check the **Status** of your gateway. If the gateway is healthy, it reports regular gateway heartbeats.
140
140
141
141
:::image type="content" source="media/how-to-deploy-self-hosted-gateway-container-apps/gateway-heartbeat.png" alt-text="Screenshot of gateway status in the portal." lightbox="media/how-to-deploy-self-hosted-gateway-container-apps/gateway-heartbeat.png":::
142
142
@@ -157,12 +157,23 @@ For example, deploy an example music album API to a container app. For later acc
157
157
1. Download [Python source code](https://codeload.github.com/azure-samples/containerapps-albumapi-python/zip/refs/heads/main) to your local machine. If you prefer, download the source code in another language of your choice.
158
158
1. Extract the source code to a local folder and change to the *containerapps-albumapi-python-main/src* folder.
159
159
1. Run the following [az containerapp up](/cli/azure/containerapp#az-containerapp-up) command to deploy the API to a container app in the same environment as the self-hosted gateway. Note the `.` at the end of the command, which specifies the current folder as the sourcefor the container app.
1. Confirm that the container app is running and accessible externally at the FQDN returned in the command output. By default the API is accessible at the `/albums` endpoint. Example: `https://albums-api.happyvalley-abcd1234.centralus.azurecontainerapps.io/albums/albums`.
167
178
168
179
### Configure the API for internal ingress
@@ -221,7 +232,7 @@ az containerapp show ----name my-gateway --resource-group myResourceGroup `
221
232
---
222
233
223
234
224
-
For example, use the following `curl` command to call the API at the `/albumapi/albums` endpoint. If your API requires a subscription key, pass a valid subscription key for your API Management instance as a header in the request:
235
+
For example, run the following `curl` command to call the API at the `/albumapi/albums` endpoint. If your API requires a subscription key, pass a valid subscription key for your API Management instance as a header in the request:
0 commit comments