Skip to content

Commit 7213380

Browse files
Several fixes.
1 parent b45e673 commit 7213380

6 files changed

+14
-26
lines changed

articles/app-service/includes/quickstart-java/quickstart-java-javase.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,19 +218,19 @@ With all the configuration ready in your [pom.xml](https://github.com/Azure-Samp
218218
219219
### [Spring Boot](#tab/springboot)
220220
221-
Open the URL `http://<appName>.azurewebsites.net/greeting` with your local web browser (note the `/greeting` path), and you should see:
221+
Get the default domain for your app in the Azure portal by selecting **Overview** for your app. Append `/greeting`. You should see:
222222
223223
:::image type="content" source="../../media/quickstart-java/springboot-hello-world-in-browser-azure-app-service.png" alt-text="Screenshot of Spring Boot Hello World web app running in Azure App Service.":::
224224
225225
### [Quarkus](#tab/quarkus)
226226
227-
Open the URL `http://<appName>.azurewebsites.net/hello` with your local web browser (note the `/hello` path), and you should see:
227+
Get the default domain for your app in the Azure portal by selecting **Overview** for your app. Append `/hello`. You should see:
228228
229229
:::image type="content" source="../../media/quickstart-java/quarkus-hello-world-in-browser-azure-app-service.png" alt-text="Screenshot of Quarkus web app running in Azure App Service.":::
230230
231231
### [Embedded Tomcat](#tab/embeddedtomcat)
232232
233-
Open the URLl with your local web browser, and you should see:
233+
Open the URL with your local web browser, and you should see:
234234
235235
:::image type="content" source="../../media/quickstart-java/embedded-tomcat-hello-world-in-browser-azure-app-service.png" alt-text="Screenshot of embedded Tomcat web app running in Azure App Service.":::
236236

articles/app-service/includes/quickstart-java/quickstart-java-linux-maven-pivot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ mvn package azure-webapp:deploy -DskipTests
266266

267267
-----
268268

269-
Once deployment is completed, your application is ready. at `http://<appName>.azurewebsites.net/` (`http://helloworld-1590394316693.azurewebsites.net` in the demo). Open the url with your local web browser, you should see
269+
Once deployment is completed, your application is ready at `http://helloworld-1590394316693.azurewebsites.net` in the demo. Open the url with your local web browser, you should see
270270

271271
# [Java SE](#tab/javase)
272272

articles/app-service/tutorial-nodejs-mongodb-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ Having issues? Check the [Troubleshooting section](#troubleshooting).
372372
:::column span="2":::
373373
**Step 1:** In the App Service page:
374374
1. From the left menu, select **Overview**.
375-
1. Select the URL of your app. You can also navigate directly to `https://<app-name>.azurewebsites.net`.
375+
1. Select the URL of your app.
376376
:::column-end:::
377377
:::column:::
378378
:::image type="content" source="./media/tutorial-nodejs-mongodb-app/azure-portal-browse-app-1.png" alt-text="A screenshot showing how to launch an App Service from the Azure portal." lightbox="./media/tutorial-nodejs-mongodb-app/azure-portal-browse-app-1.png":::
@@ -422,7 +422,7 @@ Azure App Service provides a web-based diagnostics console named [Kudu](./resour
422422
:::column span="2":::
423423
**Step 1:** In the App Service page:
424424
1. From the left menu, select **Advanced Tools**.
425-
1. Select **Go**. You can also navigate directly to `https://<app-name>.scm.azurewebsites.net`.
425+
1. Select **Go**.
426426
:::column-end:::
427427
:::column:::
428428
:::image type="content" source="./media/tutorial-nodejs-mongodb-app/azure-portal-inspect-kudu-1.png" alt-text="A screenshot showing how to navigate to the App Service Kudu page." lightbox="./media/tutorial-nodejs-mongodb-app/azure-portal-inspect-kudu-1.png":::

articles/app-service/tutorial-python-postgresql-app-django.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ With the PostgreSQL database protected by the virtual network, the easiest way t
667667
1. In the AZD output, find the URL for the SSH session and navigate to it in the browser. It looks like this in the output:
668668
669669
<pre>
670-
Open SSH session to App Service container at: <URL>
670+
Open SSH session to App Service container at: &lt;URL>
671671
</pre>
672672
673673
1. In the SSH session, run `python manage.py migrate`. If it succeeds, App Service is [connecting successfully to the database](#i-get-an-error-when-running-database-migrations).
@@ -688,7 +688,7 @@ Having issues? Check the [Troubleshooting section](#troubleshooting).
688688
Deploying services (azd deploy)
689689

690690
(✓) Done: Deploying service web
691-
- Endpoint: <URL>
691+
- Endpoint: &lt;URL>
692692
</pre>
693693

694694
2. Add a few restaurants to the list.
@@ -710,7 +710,7 @@ The sample application includes `print()` statements to demonstrate this capabil
710710
In the AZD output, find the link to stream App Service logs and navigate to it in the browser.
711711
712712
<pre>
713-
Stream App Service logs at: <URL>
713+
Stream App Service logs at: &lt;URL>
714714
</pre>
715715
716716
Learn more about logging in Python apps in the series on [setting up Azure Monitor for your Python application](/azure/azure-monitor/app/opencensus-python).

articles/app-service/tutorial-python-postgresql-app-fastapi.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ In this section, you'll run this command manually for demonstration purposes. Wi
287287
:::column span="2":::
288288
**Step 1:** In the App Service page:
289289
1. From the left menu, select **Overview**.
290-
1. Select the URL of your app. You can also navigate directly to `https://<app-name>.azurewebsites.net`.
290+
1. Select the URL of your app.
291291
:::column-end:::
292292
:::column:::
293293
:::image type="content" source="./media/tutorial-python-postgresql-app-fastapi/azure-portal-browse-app-1.png" alt-text="A screenshot showing how to launch an App Service from the Azure portal (FastAPI)." lightbox="./media/tutorial-python-postgresql-app-fastapi/azure-portal-browse-app-1.png":::
@@ -475,11 +475,7 @@ You might have noticed in the previous section that *entrypoint.sh* contains the
475475
476476
In this section, you'll run this command manually for demonstration purposes. With the PostgreSQL database protected by the virtual network, the easiest way to run the command is in an SSH session with the App Service container.
477477

478-
1. Use the value of the **App Service** that you noted previously in the azd output and the template shown below, to construct the URL for the SSH session and navigate to it in the browser:
479-
480-
```
481-
https://<app-name>.scm.azurewebsites.net/webssh/host
482-
```
478+
1. Use the value of the **App Service** that you noted previously in the azd output to construct the URL for the SSH session and navigate to it in the browser:
483479

484480
1. In the SSH terminal, run `python3 src/fastapi_app/seed_data.py`. If it succeeds, App Service is [connecting successfully to the database](#i-get-an-error-when-running-database-migrations).
485481

@@ -514,11 +510,7 @@ The sample app uses the Python Standard Library logging module to output logs. T
514510

515511
:::code language="python" source="~/msdocs-fastapi-postgresql-sample-app/src/fastapi_app/app.py" range="39-46" highlight="3":::
516512

517-
Use the values of the **Subscription ID** (Guid), **Resource Group**, and **App Service** that you noted previously in the azd output and the template shown below, to construct the URL to stream App Service logs and navigate to it in the browser.
518-
519-
```
520-
https://portal.azure.com/#@/resource/subscriptions/<subscription-guid>/resourceGroups/<group-name>/providers/Microsoft.Web/sites/<app-name>/logStream
521-
```
513+
To access the log stream, open your app in the Azure portal. Select **Monitoring** > **Log stream**.
522514

523515
Events can take several minutes to show up in the diagnostic logs. Learn more about logging in Python apps in the series on [setting up Azure Monitor for your Python application](/azure/azure-monitor/app/opencensus-python).
524516

articles/app-service/tutorial-python-postgresql-app-flask.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ Having issues? Check the [Troubleshooting section](#troubleshooting).
640640
Deploying services (azd deploy)
641641
642642
(✓) Done: Deploying service web
643-
- Endpoint: https://&lt;app-name>.azurewebsites.net/
643+
- Endpoint: &lt;URL>
644644
</pre>
645645
646646
2. Add a few restaurants to the list.
@@ -659,11 +659,7 @@ The sample application includes `print()` statements to demonstrate this capabil
659659
660660
:::code language="python" source="~/msdocs-flask-postgresql-sample-app/app.py" range="37-41" highlight="3":::
661661
662-
In the AZD output, find the link to stream App Service logs and navigate to it in the browser. The link looks like this in the AZD output:
663-
664-
<pre>
665-
Stream App Service logs at: https://portal.azure.com/#@/resource/subscriptions/&lt;subscription-guid>/resourceGroups/&lt;group-name>/providers/Microsoft.Web/sites/&lt;app-name>/logStream
666-
</pre>
662+
In the AZD output, find the link to stream App Service logs and navigate to it in the browser.
667663
668664
Learn more about logging in Python apps in the series on [setting up Azure Monitor for your Python application](/azure/azure-monitor/app/opencensus-python).
669665

0 commit comments

Comments
 (0)