Skip to content

Commit 4816acd

Browse files
committed
fixing broken bookmark
1 parent 4b774cc commit 4816acd

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

articles/app-service/configure-custom-container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,4 +581,4 @@ The following lists show supported and unsupported Docker Compose configuration
581581
Or, see more resources:
582582

583583
- [Environment variables and app settings reference](reference-app-settings.md)
584-
- [Load certificate in Windows/Linux containers](configure-ssl-certificate-in-code.md#load-certificate-in-linuxwindows-containers)
584+
- [Load certificates in Windows/Linux containers](configure-ssl-certificate-in-code.md#load-certificates-in-linuxwindows-containers)

articles/app-service/configure-ssl-app-service-certificate.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ author: msangapu-msft
1313

1414
# Buy and manage App Service certificates
1515

16-
This article shows how to create an Azure App Service certificate and perform management tasks like renewing, synchronizing, and deleting certificates. After you have an App Service certificate, you can then import it into an App Service app. An App Service certificate is a private certificate that Azure manages. It combines the simplicity of automated certificate management and the flexibility of renewal and export options.
16+
This article shows you how to create an Azure App Service certificate and perform management tasks like renewing, synchronizing, and deleting certificates. After you have an App Service certificate, you can then import it into an App Service app. An App Service certificate is a private certificate that Azure manages. It combines the simplicity of automated certificate management and the flexibility of renewal and export options.
1717

1818
If you purchase an App Service certificate from Azure, Azure manages the following tasks:
1919

@@ -53,7 +53,7 @@ Currently, App Service certificates aren't supported in Azure national clouds.
5353
| **Certificate name** | The friendly name for your App Service certificate. |
5454
| **Enable auto renewal** | Select whether to automatically renew the certificate before expiration. Each renewal extends the certificate expiration by one year. The cost is charged to your subscription. |
5555

56-
1. When deployment is finished, select **Go to resource**.
56+
1. After the deployment is finished, select **Go to resource**.
5757

5858
#### Store the certificate in Azure Key Vault
5959

@@ -63,7 +63,7 @@ Currently, App Service certificates aren't supported in Azure national clouds.
6363

6464
:::image type="content" source="media/configure-ssl-certificate/configure-key-vault.png" alt-text="Screenshot that shows the Certificate Configuration pane with Step 1: Store selected.":::
6565

66-
1. On the **Key Vault Status** page, select **Select from Key Vault**.
66+
1. On the **Key Vault Status** page, choose **Select from Key Vault**.
6767

6868
1. If you create a new vault, set up the vault based on the following table. Make sure to use the same subscription and resource group as your App Service app.
6969

@@ -206,7 +206,7 @@ Set-Content -Path appservicecertificate.pfx -Value $CertBytes -AsByteStream
206206

207207
---
208208

209-
The downloaded .pfx file is a raw PKCS12 file that contains both the public and private certificates and has an import password that's an empty string. You can locally install the file by leaving the password field empty. You can't [upload the file as-is into App Service](configure-ssl-certificate.md#upload-a-private-certificate) because the file isn't [password protected](configure-ssl-certificate.md#private-certificate-requirements).
209+
The downloaded .pfx file is a raw PKCS12 file that contains both the public and private certificates and has an import password that's an empty string. You can locally install the file by leaving the password field empty. You can't [upload the file as it is into App Service](configure-ssl-certificate.md#upload-a-private-certificate) because the file isn't [password protected](configure-ssl-certificate.md#private-certificate-requirements).
210210

211211
## Use Azure Advisor for App Service certificates
212212

@@ -220,7 +220,7 @@ To view Advisor recommendations for the App Service certificate:
220220

221221
1. On the left pane, select **Recommendations** > **Reliability**.
222222

223-
1. Select the filter option **Type equals** and search for **App Service Certificates** from the dropdown list. If the value doesn't exist on the dropdown menu, that means no recommendation was generated for your App Service certificate resources because none of them requires domain ownership verification.
223+
1. Select the filter option **Type equals** and search for **App Service Certificates** in the dropdown list. If the value doesn't exist in the dropdown list, that means no recommendation was generated for your App Service certificate resources because none of them requires domain ownership verification.
224224

225225
### Create Advisor alerts
226226

articles/app-service/configure-ssl-bindings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ In the <a href="https://portal.azure.com" target="_blank">Azure portal</a>:
4646
1. In **TLS/SSL type**, select either **SNI SSL** or **IP based SSL**:
4747

4848
- [SNI SSL](https://en.wikipedia.org/wiki/Server_Name_Indication): You can add multiple Server Name Indication (SNI) Secure Sockets Layer (SSL) bindings. This option allows multiple Transport Layer Security (TLS)/SSL certificates to help secure multiple domains on the same IP address. Most modern browsers (including Microsoft Edge, Chrome, Firefox, and Opera) support SNI. (For more information, see [Server Name Indication](https://wikipedia.org/wiki/Server_Name_Indication).)
49-
- **IP based SSL**: You can add only one IP SSL binding. This option allows only one TLS/SSL certificate to help secure a dedicated public IP address. After you configure the binding, follow the steps in [Remap records for IP-based SSL](#remap-records-for-ip-based-ssl).<br/>IP-based SSL is supported only in the Standard tier or higher.
49+
- **IP based SSL**: You can add only one IP SSL binding. This option allows only one TLS/SSL certificate to help secure a dedicated public IP address. After you configure the binding, follow the steps in [Remap records for IP-based SSL](#remap-records-for-ip-based-ssl). IP-based SSL is supported only in the Standard tier or higher.
5050

51-
1. When you add a new certificate, validate the new certificate by selecting **Validate**.
51+
1. When you add a new certificate, select **Validate** to validate the new certificate.
5252

5353
1. Select **Add**.
5454

@@ -86,7 +86,7 @@ If your app gives you certificate validation errors, you're probably using a sel
8686

8787
#### How do I make sure that the app's IP address doesn't change when I make changes to the certificate binding?
8888

89-
Your inbound IP address can change when you delete a binding, even if that binding is IP SSL. This behavior is especially important when you renew a certificate that's already in an IP SSL binding. To avoid a change in your app's IP address, follow these steps, in order:
89+
Your inbound IP address can change when you delete a binding, even if that binding is IP SSL. This behavior is especially important when you renew a certificate that's already in an IP SSL binding. To avoid a change in your app's IP address, follow these steps:
9090

9191
1. Upload the new certificate.
9292
1. Bind the new certificate to the custom domain that you want without deleting the old one. This action replaces the binding instead of removing the old one.

articles/app-service/configure-ssl-certificate-in-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ author: msangapu-msft
1414

1515
In your application code, you can access the [public or private certificates that you add to Azure App Service](configure-ssl-certificate.md). Your app code might act as a client and access an external service that requires certificate authentication. It might also need to perform cryptographic tasks. This article shows how to use public or private certificates in your application code.
1616

17-
This approach to using certificates in your code makes use of the Transport Layer Security (TLS) functionality in App Service, which requires your app to be in the Basic tier or higher. If your app is in the Free or Shared tier, you can [include the certificate file in your app repository](#load-certificate-from-file).
17+
This approach to using certificates in your code makes use of the Transport Layer Security (TLS) functionality in App Service, which requires your app to be in the Basic tier or higher. If your app is in the Free or Shared tier, you can [include the certificate file in your app repository](#load-a-certificate-from-a-file).
1818

1919
When you let App Service manage your TLS/Secure Sockets Layer (SSL) certificates, you can maintain the certificates and your application code separately and safeguard your sensitive data.
2020

articles/app-service/configure-ssl-certificate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ To import an App Service certificate, first [buy and configure an App Service ce
116116
1. On the left pane of your app, select **Certificates** > **Bring your own certificates (.pfx)** > **Add certificate**.
117117

118118
1. Under **Source**, select **Import App Service Certificate**.
119-
1. Under **App Service certificate**, select the certificate you created.
119+
1. Under **App Service certificate**, select the certificate that you created.
120120
1. Under **Certificate friendly name**, give the certificate a name in your app.
121121
1. Select **Validate**. When validation succeeds, select **Add**.
122122

0 commit comments

Comments
 (0)