Skip to content

Commit 827fc5b

Browse files
authored
Merge branch 'main' into patch-3
2 parents 59b9d7b + ee65553 commit 827fc5b

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

content/controller/releases/apim/apim-release-notes-3.19.2.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ The following issues are known to be present in this release. Look for updates t
5959
**Workaround:**
6060

6161
Manually start the bd_agent process on the NAP module using this command: 
62-
{{< highlight bash >}}/bin/su -s /bin/bash -c '/opt/app_protect/bin/bd_agent &' nginx.{{< /highlight >}}
62+
```bash {linenos=false,hl_lines=[1]}
63+
/bin/su -s /bin/bash -c '/opt/app_protect/bin/bd_agent &' nginx.
64+
```
6365

6466
Then restart the NGINX service.
6567

content/nap-dos/deployment-guide/installing-nginx-plus-with-dos-and-waf-on-amazon-web-services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The AMIs contain combination of the following components:
2121
- Latest version of [NGINX App Protect WAF](https://docs.nginx.com/nginx-app-protect-waf/), optimized for use on Amazon EC2
2222
- Pre-packaged software for building highly available (HA) NGINX Plus configurations
2323

24-
## Installing the NGINX Plus NGINX App Protect WAF + DoS
24+
## Install NGINX Plus NGINX App Protect WAF + DoS
2525

2626
To quickly set up an environment with NGINX Plus, NGINX App Protect WAF and NGINX App Protect DoS on AWS:
2727

content/nap-dos/monitoring/live-activity-monitoring.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ To activate the API:
113113
}
114114
```
115115

116-
## Using the Dashboard
117-
### Accessing the Dashboard
116+
## Use the Dashboard
117+
### Access the Dashboard
118118
To view the Dashboard, enter the corresponding address in your browser's address bar.<br>
119119
For example, "http://192.168.1.23/dashboard-dos.html" will show the Dashboard page located in /usr/share/nginx/html as indicated in the root directive.
120120

@@ -158,12 +158,12 @@ The displayed graph is a stacked composition, encompassing two specific metrics:
158158
- **Yellow**: Indicates the presence of either an active attack or diminished server health.
159159
- **Red**: Indicates a severe scenario, where the object is experiencing an attack combined with poor health.
160160

161-
### Configuring Dashboard Options
161+
### Configure Dashboard Options
162162
You can configure the dashboard by clicking the Gear button in the Tabs menu.<br>
163163
**Update every N sec** - updates the Dashboard data after the specified number of seconds, default is 1 second.<br>
164164
<br>
165165

166-
## Using the REST API
166+
## Use the REST API
167167
Statistics of your server infrastructure can be managed with the REST API interface. The API is based on standard HTTP requests: statistics can be obtained with `GET` requests.
168168

169169
The requests are sent in the JSON format that allows you to connect the stats to monitoring tools or dashboards that support JSON.

content/nginxaas-azure/known-issues.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Attaching multiple certificates to a deployment quickly will result in a deploym
111111

112112
Use [depends_on](https://developer.hashicorp.com/terraform/language/meta-arguments/depends_on) to add a dependency between certificate resources:
113113

114-
{{< highlight hcl "linenos=false,hl_lines=16" >}}
114+
```hcl {linenos=false,hl_lines=[16]}
115115
resource "azurerm_nginx_certificate" "cert1" {
116116
name = "examplecert"
117117
nginx_deployment_id = azurerm_nginx_deployment.test.id
@@ -129,13 +129,13 @@ resource "azurerm_nginx_certificate" "cert2" {
129129
130130
depends_on = [azurerm_nginx_certificate.cert1]
131131
}
132-
{{< / highlight >}}
132+
```
133133

134134
**ARM Template**
135135

136136
Use [dependsOn](https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/resource-dependency) to add a dependency between certificate resources:
137137

138-
{{< highlight json "linenos=false,hl_lines=21" >}}
138+
```json {linenos=false,hl_lines=[21]}
139139
{
140140
"type": "NGINX.NGINXPLUS/nginxDeployments/certificates",
141141
"apiVersion": "2021-05-01-preview",
@@ -158,13 +158,13 @@ Use [dependsOn](https://learn.microsoft.com/en-us/azure/azure-resource-manager/t
158158
}
159159
"dependsOn": ["cert1"]
160160
}
161-
{{< / highlight >}}
161+
```
162162

163163
**Bicep Template**
164164

165165
Use [dependsOn](https://learn.microsoft.com/en-us/azure/azure-resource-manager/bicep/resource-dependencies) to add a dependency between certificate resources:
166166

167-
{{< highlight bicep "linenos=false,hl_lines=17" >}}
167+
```bicep {linenos=false,hl_lines=[17]}
168168
resource cert1 'NGINX.NGINXPLUS/nginxDeployments/certificates@2021-05-01-preview' = {
169169
name: '${nginxDeploymentName}/cert1'
170170
properties: {
@@ -183,7 +183,7 @@ resource cert2 'NGINX.NGINXPLUS/nginxDeployments/certificates@2021-05-01-preview
183183
}
184184
dependsOn: [cert1]
185185
}
186-
{{< / highlight >}}
186+
```
187187

188188
### {{% icon-bug %}} Terraform errors around capacity for Basic plan deployments (ID-4880)
189189

0 commit comments

Comments
 (0)