Skip to content

Commit 108e175

Browse files
Work in progress.
1 parent 683ee2d commit 108e175

15 files changed

+20
-28
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ With all the configuration ready in your *pom.xml* file, you can deploy your Jav
120120
mvn package azure-webapp:deploy -DskipTests
121121
```
122122

123-
Once you select from a list of available subscriptions, Maven deploys to Azure App Service. When deployment completes, your application is ready at `http://<appName>.azurewebsites.net/` (`http://petstoreee7-1745409173307.azurewebsites.net` in the demo). Open the URL with your local web browser, you should see
123+
Once you select from a list of available subscriptions, Maven deploys to Azure App Service. When deployment completes, your application is ready. In this demo, the URL is `http://petstoreee7-1745409173307.azurewebsites.net`. Open the URL with your local web browser, you should see
124124

125125
![Screenshot of Maven Hello World web app running in Azure App Service.](../../media/quickstart-java/jboss-sample-in-app-service.png)
126126

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://<appName>.azurewebsites.net/` (`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/includes/quickstart-java/quickstart-java-tomcat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ With all the configuration ready in your *pom.xml* file, you can deploy your Jav
110110
```azurecli-interactive
111111
mvn package azure-webapp:deploy
112112
```
113-
Once you select from a list of available subscriptions, Maven deploys to Azure App Service. When deployment completes, your application is ready at `http://<appName>.azurewebsites.net/` (`http://helloworld-1745408005556.azurewebsites.net` in the demo). Open the URL with your local web browser, you should see
113+
Once you select from a list of available subscriptions, Maven deploys to Azure App Service. When deployment completes, your application is ready. In this demo, the URL is `http://helloworld-1745408005556.azurewebsites.net`. Open the URL with your local web browser, you should see
114114

115115
![Screenshot of Maven Hello World web app running in Azure App Service.](../../media/quickstart-java/java-hello-world-in-browser-azure-app-service.png)
116116

articles/app-service/includes/quickstart-php/quickstart-php-windows-pivot.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,10 @@ To complete this quickstart:
9595
You've created an empty new web app, with git deployment enabled.
9696

9797
> [!NOTE]
98-
> The URL of the Git remote is shown in the `deploymentLocalGitUrl` property, with the format `https://<username>@<app-name>.scm.azurewebsites.net/<app-name>.git`. Save this URL as you need it later.
98+
> The URL of the Git remote is shown in the `deploymentLocalGitUrl` property. Save this URL as you need it later.
9999
>
100100

101-
1. Browse to your newly created web app. Replace _&lt;app-name>_ with your unique app name created in the prior step.
102-
103-
```bash
104-
http://<app-name>.azurewebsites.net
105-
```
101+
1. Browse to your newly created web app.
106102

107103
Here's what your new web app should look like:
108104
@@ -139,10 +135,6 @@ To complete this quickstart:
139135
140136
Browse to the deployed application using your web browser.
141137
142-
```
143-
http://<app-name>.azurewebsites.net
144-
```
145-
146138
The PHP sample code is running in an Azure App Service web app.
147139
148140
![Sample app running in Azure](../../media/quickstart-php/hello-world-in-browser.png)

articles/app-service/tutorial-connect-app-access-sql-database-as-user-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ The most common causes of this error are:
273273
Because App Service authentication is a feature in Azure, it's not possible for the same code to work in your local environment. Unlike the app running in Azure, your local code doesn't benefit from the authentication middleware from App Service. You have a few alternatives:
274274

275275
- Connect to SQL Database from your local environment with [`Active Directory Interactive`](/sql/connect/ado-net/sql/azure-active-directory-authentication#using-active-directory-interactive-authentication). The authentication flow doesn't sign in the user to the app itself, but it does connect to the back-end database with the signed-in user, and allows you to test database authorization locally.
276-
- Manually copy the access token from `https://<app-name>.azurewebsites.net/.auth/me` into your code, in place of the `X-MS-TOKEN-AAD-ACCESS-TOKEN` request header.
276+
- Manually copy the access token into your code, in place of the `X-MS-TOKEN-AAD-ACCESS-TOKEN` request header.
277277
- If you deploy from Visual Studio, use remote debugging of your App Service app.
278278

279279
#### What happens when access tokens expire?

articles/app-service/tutorial-connect-app-app-graph-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ Now that the code has the correct token for Microsoft Graph, use it to create a
269269
270270
## 6. Test your changes
271271
272-
1. Use the frontend web site in a browser. The URL is in the format of `https://<front-end-app-name>.azurewebsites.net/`. You may need to refresh your token if it's expired.
272+
1. Use the frontend web site in a browser. You may need to refresh your token if it's expired.
273273
1. Select `Get user's profile`. This passes your authentication in the bearer token to the backend.
274274
1. The backend end responds with the _real_ Microsoft Graph profile for your account.
275275

articles/app-service/tutorial-dotnetcore-sqldb-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Having issues? Check the [Troubleshooting section](#troubleshooting).
118118

119119
In this step, you create the Azure resources. The steps used in this tutorial create a set of secure-by-default resources that include App Service, Azure SQL Database, and Azure Cache. For the creation process, you'll specify:
120120

121-
* The **Name** for the web app. It's used as part of the DNS name for your app in the form of `https://<app-name>-<hash>.<region>.azurewebsites.net`.
121+
* The **Name** for the web app. It's used as part of the DNS name for your app.
122122
* The **Region** to run the app physically in the world. It's also used as part of the DNS name for your app.
123123
* The **Runtime stack** for the app. It's where you select the .NET version to use for your app.
124124
* The **Hosting plan** for the app. It's the pricing tier that includes the set of features and scaling capacity for your app.

articles/app-service/tutorial-java-jboss-mysql-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Having issues? Check the [Troubleshooting section](#troubleshooting).
116116

117117
First, you create the Azure resources. The steps used in this tutorial create a set of secure-by-default resources that include App Service and Azure Database for MySQL. For the creation process, you specify:
118118

119-
* The **Name** for the web app. It's used as part of the DNS name for your app in the form of `https://<app-name>-<hash>.<region>.azurewebsites.net`.
119+
* The **Name** for the web app. It's used as part of the DNS name for your app.
120120
* The **Region** to run the app physically in the world. It's also used as part of the DNS name for your app.
121121
* The **Runtime stack** for the app. It's where you select the version of Java to use for your app.
122122
* The **Hosting plan** for the app. It's the pricing tier that includes the set of features and scaling capacity for your app.

articles/app-service/tutorial-java-spring-cosmosdb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Having issues? Check the [Troubleshooting section](#troubleshooting).
117117

118118
First, you create the Azure resources. The steps used in this tutorial create a set of secure-by-default resources that include App Service and Azure Cosmos DB. For the creation process, you specify:
119119

120-
* The **Name** for the web app. It's used as part of the DNS name for your app in the form of `https://<app-name>-<hash>.<region>.azurewebsites.net`.
120+
* The **Name** for the web app. It's used as part of the DNS name for your app.
121121
* The **Region** to run the app physically in the world. It's also used as part of the DNS name for your app.
122122
* The **Runtime stack** for the app. It's where you select the version of Java to use for your app.
123123
* The **Hosting plan** for the app. It's the pricing tier that includes the set of features and scaling capacity for your app.

articles/app-service/tutorial-java-tomcat-mysql-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Having issues? Check the [Troubleshooting section](#troubleshooting).
115115

116116
First, you create the Azure resources. The steps used in this tutorial create a set of secure-by-default resources that include App Service and Azure Database for MySQL. For the creation process, you specify:
117117

118-
* The **Name** for the web app. It's used as part of the DNS name for your app in the form of `https://<app-name>-<hash>.<region>.azurewebsites.net`.
118+
* The **Name** for the web app. It's used as part of the DNS name.
119119
* The **Region** to run the app physically in the world. It's also used as part of the DNS name for your app.
120120
* The **Runtime stack** for the app. It's where you select the version of Java to use for your app.
121121
* The **Hosting plan** for the app. It's the pricing tier that includes the set of features and scaling capacity for your app.

0 commit comments

Comments
 (0)