Skip to content

Commit ae82d62

Browse files
authored
Change 'Azure Websites' to 'Azure App Service' (#18341)
1 parent bc9f677 commit ae82d62

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

aspnetcore/security/authentication/identity-api-authorization.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,11 @@ To deploy the app to production, the following resources need to be provisioned:
265265
* It can be generated through standard tools like PowerShell or OpenSSL.
266266
* It can be installed into the certificate store on the target machines or deployed as a *.pfx* file with a strong password.
267267

268-
### Example: Deploy to Azure Websites
268+
### Example: Deploy to Azure App Service
269269

270-
This section describes deploying the app to Azure websites using a certificate stored in the certificate store. To modify the app to load a certificate from the certificate store, the App Service plan needs to be on at least the Standard tier when you configure in a later step. In the app's *appsettings.json* file, modify the `IdentityServer` section to include the key details:
270+
This section describes deploying the app to Azure App Service using a certificate stored in the certificate store. To modify the app to load a certificate from the certificate store, a Standard tier service plan or better is required when you configure the app in the Azure portal in a later step.
271+
272+
In the app's *appsettings.json* file, modify the `IdentityServer` section to include the key details:
271273

272274
```json
273275
"IdentityServer": {
@@ -284,13 +286,13 @@ This section describes deploying the app to Azure websites using a certificate s
284286
* The store location represents where to load the certificate from (`CurrentUser` or `LocalMachine`).
285287
* The name property on certificate corresponds with the distinguished subject for the certificate.
286288

287-
To deploy to Azure Websites, deploy the app following the steps in [Deploy the app to Azure](xref:tutorials/publish-to-azure-webapp-using-vs#deploy-the-app-to-azure) to create the necessary Azure resources and deploy the app to production.
289+
To deploy to Azure App Service, follow the steps in [Deploy the app to Azure](xref:tutorials/publish-to-azure-webapp-using-vs#deploy-the-app-to-azure), which explains how to create the necessary Azure resources and deploy the app to production.
288290

289-
After following the preceding instructions, the app is deployed to Azure but isn't yet functional. The certificate used by the app still needs to be set up. Locate the thumbprint for the certificate to be used, and follow the steps described in [Load your certificates](/azure/app-service/app-service-web-ssl-cert-load#load-the-certificate-in-code).
291+
After following the preceding instructions, the app is deployed to Azure but isn't yet functional. The certificate used by the app must be configured in the Azure portal. Locate the thumbprint for the certificate and follow the steps described in [Load your certificates](/azure/app-service/app-service-web-ssl-cert-load#load-the-certificate-in-code).
290292

291-
While these steps mention SSL, there's a **Private certificates** section on the portal where you can upload the provisioned certificate to use with the app.
293+
While these steps mention SSL, there's a **Private certificates** section in the Azure portal where you can upload the provisioned certificate to use with the app.
292294

293-
After this step, restart the app and it should be functional.
295+
After configuring the app and the app's settings in the Azure portal, restart the app in the portal.
294296

295297
## Other configuration options
296298

0 commit comments

Comments
 (0)