diff --git a/content/controller/releases/apim/apim-release-notes-3.19.2.md b/content/controller/releases/apim/apim-release-notes-3.19.2.md index 42130b2a4..8767ed6f3 100644 --- a/content/controller/releases/apim/apim-release-notes-3.19.2.md +++ b/content/controller/releases/apim/apim-release-notes-3.19.2.md @@ -59,7 +59,9 @@ The following issues are known to be present in this release. Look for updates t **Workaround:** Manually start the bd_agent process on the NAP module using this command:  - {{< highlight bash >}}/bin/su -s /bin/bash -c '/opt/app_protect/bin/bd_agent &' nginx.{{< /highlight >}} + ```bash {linenos=false,hl_lines=[1]} + /bin/su -s /bin/bash -c '/opt/app_protect/bin/bd_agent &' nginx. + ``` Then restart the NGINX service. diff --git a/content/nginxaas-azure/known-issues.md b/content/nginxaas-azure/known-issues.md index 09f11367a..2cb679cab 100644 --- a/content/nginxaas-azure/known-issues.md +++ b/content/nginxaas-azure/known-issues.md @@ -111,7 +111,7 @@ Attaching multiple certificates to a deployment quickly will result in a deploym Use [depends_on](https://developer.hashicorp.com/terraform/language/meta-arguments/depends_on) to add a dependency between certificate resources: -{{< highlight hcl "linenos=false,hl_lines=16" >}} +```hcl {linenos=false,hl_lines=[16]} resource "azurerm_nginx_certificate" "cert1" { name = "examplecert" nginx_deployment_id = azurerm_nginx_deployment.test.id @@ -129,13 +129,13 @@ resource "azurerm_nginx_certificate" "cert2" { depends_on = [azurerm_nginx_certificate.cert1] } -{{< / highlight >}} +``` **ARM Template** Use [dependsOn](https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/resource-dependency) to add a dependency between certificate resources: -{{< highlight json "linenos=false,hl_lines=21" >}} +```json {linenos=false,hl_lines=[21]} { "type": "NGINX.NGINXPLUS/nginxDeployments/certificates", "apiVersion": "2021-05-01-preview", @@ -158,13 +158,13 @@ Use [dependsOn](https://learn.microsoft.com/en-us/azure/azure-resource-manager/t } "dependsOn": ["cert1"] } -{{< / highlight >}} +``` **Bicep Template** Use [dependsOn](https://learn.microsoft.com/en-us/azure/azure-resource-manager/bicep/resource-dependencies) to add a dependency between certificate resources: -{{< highlight bicep "linenos=false,hl_lines=17" >}} +```bicep {linenos=false,hl_lines=[17]} resource cert1 'NGINX.NGINXPLUS/nginxDeployments/certificates@2021-05-01-preview' = { name: '${nginxDeploymentName}/cert1' properties: { @@ -183,7 +183,7 @@ resource cert2 'NGINX.NGINXPLUS/nginxDeployments/certificates@2021-05-01-preview } dependsOn: [cert1] } -{{< / highlight >}} +``` ### {{% icon-bug %}} Terraform errors around capacity for Basic plan deployments (ID-4880)