Skip to content

Commit dddba19

Browse files
Additional fixes.
1 parent e1d76a8 commit dddba19

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

articles/app-service/includes/quickstart-python/create-app-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ az webapp up --runtime PYTHON:3.13 --sku B1 --logs
2626
* You can optionally specify a name with the argument `--name <app-name>`. If you don't provide one, then a name will be automatically generated.
2727
* You can optionally include the argument `--location <location-name>` where `<location_name>` is an available Azure region. You can retrieve a list of allowable regions for your Azure account by running the [`az appservice list-locations`](/cli/azure/appservice#az-appservice-list-locations) command.
2828

29-
The command may take a few minutes to complete. While the command is running, it provides messages about creating the resource group, the App Service plan, and the app resource, configuring logging, and doing ZIP deployment. It then gives the message, "You can launch the app at http://&lt;app-name&gt;.azurewebsites.net", which is the app's URL on Azure.
29+
The command may take a few minutes to complete. While the command is running, it provides messages about creating the resource group, the App Service plan, and the app resource, configuring logging, and doing ZIP deployment. It then returns a message that includes the app's URL, which is the app's URL on Azure.
3030

3131
<pre>
3232
The webapp '&lt;app-name>' doesn't exist
@@ -39,9 +39,9 @@ Creating zip with contents of dir /home/cephas/myExpressApp ...
3939
Getting scm site credentials for zip deployment
4040
Starting zip deployment. This operation can take a while to complete ...
4141
Deployment endpoint responded with status code 202
42-
You can launch the app at http://&lt;app-name>.azurewebsites.net
42+
You can launch the app at &lt;URL>
4343
{
44-
"URL": "http://&lt;app-name>.azurewebsites.net",
44+
"URL": "&lt;URL>",
4545
"appserviceplan": "&lt;app-service-plan-name>",
4646
"location": "centralus",
4747
"name": "&lt;app-name>",

articles/app-service/includes/quickstart-python/deploy-zip-curl-commands.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,19 @@ ms.author: daberry
44
ms.topic: include
55
ms.date: 01/29/2022
66
---
7+
Get the <URL> from your Kudu Environment:
8+
9+
1. Open your app in the Azure portal and select **Development Tools** > **Advanced Tools**, then select **Go**.
10+
1. Copy the value from the address bar and append */api/zipdeploy*.
11+
712
##### [bash](#tab/terminal-bash)
813

914
```bash
1015
curl -X POST \
1116
-H 'Content-Type: application/zip' \
1217
-u '<deployment-user>' \
1318
-T <zip-file-name> \
14-
https://<app-name>.scm.azurewebsites.net/api/zipdeploy
19+
<URL>
1520
```
1621

1722
##### [PowerShell terminal](#tab/terminal-powershell)
@@ -23,7 +28,7 @@ curl -X POST `
2328
-H 'Content-Type: application/zip' `
2429
-u '<deployment-user>' `
2530
-T <zip-file-name> `
26-
https://<app-name>.scm.azurewebsites.net/api/zipdeploy
31+
<URL>
2732
```
2833

2934
---

articles/app-service/quickstart-nodejs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ az webapp up --sku F1 --name <app-name> --os-type Windows
199199
- The command creates a Linux app for Node.js by default. To create a Windows app instead, use the `--os-type` argument.
200200
- If you see the error, "Could not auto-detect the runtime stack of your app," ensure you're running the command in the *myExpressApp* directory (See [Troubleshooting auto-detect issues with az webapp up](https://github.com/Azure/app-service-linux-docs/blob/master/AzWebAppUP/runtime_detection.md).)
201201
202-
The command might take a few minutes to complete. While running, it provides messages about creating the resource group, the App Service plan, and the app resource, configuring logging, and doing Zip deployment. It then returns a message which includes the app's URL on Azure.
202+
The command might take a few minutes to complete. While running, it provides messages about creating the resource group, the App Service plan, and the app resource, configuring logging, and doing Zip deployment. It then returns a message that includes the app's URL, which is the app's URL on Azure.
203203
204204
<pre>
205205
The webapp '&lt;app-name>' doesn't exist
@@ -212,7 +212,7 @@ Creating zip with contents of dir /home/cephas/myExpressApp ...
212212
Getting scm site credentials for zip deployment
213213
Starting zip deployment. This operation can take a while to complete ...
214214
Deployment endpoint responded with status code 202
215-
You can launch the app at '&lt;URL>'
215+
You can launch the app at &lt;URL>
216216
{
217217
"URL": "&lt;URL>",
218218
"appserviceplan": "&lt;app-service-plan-name>",

0 commit comments

Comments
 (0)