You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/security/authentication/identity-api-authorization.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -265,9 +265,11 @@ To deploy the app to production, the following resources need to be provisioned:
265
265
* It can be generated through standard tools like PowerShell or OpenSSL.
266
266
* It can be installed into the certificate store on the target machines or deployed as a *.pfx* file with a strong password.
267
267
268
-
### Example: Deploy to Azure Websites
268
+
### Example: Deploy to Azure App Service
269
269
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:
271
273
272
274
```json
273
275
"IdentityServer": {
@@ -284,13 +286,13 @@ This section describes deploying the app to Azure websites using a certificate s
284
286
* The store location represents where to load the certificate from (`CurrentUser` or `LocalMachine`).
285
287
* The name property on certificate corresponds with the distinguished subject for the certificate.
286
288
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.
288
290
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).
290
292
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.
292
294
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.
0 commit comments