Skip to content

Commit 191daca

Browse files
committed
slight fixes to includes and articles
1 parent f68fb85 commit 191daca

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

articles/app-service/includes/quickstart-python/configure-startup-azure-portal-1.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ ms.author: v-jibrannian
44
ms.topic: include
55
ms.date: 07/02/7024
66
---
7-
First, you need to configure a startup command in Azure App Service. Navigate to page for the App Service instance in the Azure portal.<br>
7+
First, configure the startup command in Azure App Service. Navigate to the page for the App Service instance in the Azure portal.<br>
88
<br>
9-
1. Select **Configuraiton** under the **Setting** heading in the menu on the left side of the page.
9+
1. Select **Configuration** under the **Settings** heading in the menu on the left side of the page.
1010
1. Make sure the **General settings** tab is selected.
1111
1. In the **Startup Command** field, enter *gunicorn -w 2 -k uvicorn.workers.UvicornWorker -b 0.0.0.0:8000 main:app*.
1212
1. Select **Save** to save your changes.
13-
1. Wait for the notification that the settings have been updated before proceeding.
13+
1. Wait for the notification that the settings are updated before proceeding.

articles/app-service/includes/quickstart-python/configure-startup-azure-portal-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ms.author: v-jibrannian
44
ms.topic: include
55
ms.date: 07/02/7024
66
---
7-
Next, you need to restart the web app.<br>
7+
Next, restart the web app.<br>
88
<br>
99
1. Select **Overview** in the menu on the left side of the page.
1010
1. On the top menu, select **Restart**.

articles/app-service/quickstart-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ App Service automatically detects the presence of a Django app. No additional co
229229

230230
### [Azure CLI](#tab/azure-cli/fastapi)
231231

232-
For FastAPI, you must configure a custom startup command for App Service to run your app. Set the following command to start Gunicorn with 2 Uvicorn worker processes: `gunicorn -w 2 -k uvicorn.workers.UvicornWorker -b 0.0.0.0:8000 main:app`.
232+
For FastAPI, you must configure a custom startup command for App Service to run your app. The following command starts Gunicorn with 2 Uvicorn worker processes: `gunicorn -w 2 -k uvicorn.workers.UvicornWorker -b 0.0.0.0:8000 main:app`.
233233

234234
First, configure the startup command using the [az webapp config set](/cli/azure/webapp/config#az-webapp-config-set) command.
235235

@@ -270,7 +270,7 @@ App Service automatically detects the presence of a Django app. No additional co
270270

271271
#### [Azure portal](#tab/azure-portal/fastapi)
272272

273-
For FastAPI, you must configure a custom startup command for App Service to run your app. Set the following command to start Gunicorn with 2 Uvicorn worker processes: `gunicorn -w 2 -k uvicorn.workers.UvicornWorker -b 0.0.0.0:8000 main:app`.
273+
For FastAPI, you must configure a custom startup command for App Service to run your app. The following command starts Gunicorn with 2 Uvicorn worker processes: `gunicorn -w 2 -k uvicorn.workers.UvicornWorker -b 0.0.0.0:8000 main:app`.
274274

275275
| Instructions | Screenshot |
276276
|:----------------|-----------:|

0 commit comments

Comments
 (0)