Skip to content

Commit 76b73b3

Browse files
authored
Merge branch 'main' into patch-1
2 parents 682e946 + e0b23cf commit 76b73b3

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

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/nginx/admin-guide/basic-functionality/runtime-control.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Understand the NGINX processes that handle traffic, and how to control
33
them at runtime.
44
docs: DOCS-379
5-
title: Controlling NGINX Processes at Runtime
5+
title: Control NGINX Processes at Runtime
66
toc: true
77
weight: 100
88
type:
@@ -19,7 +19,7 @@ The main purpose of the master process is to read and evaluate configuration fil
1919

2020
The worker processes do the actual processing of requests. NGINX relies on <span style="white-space: nowrap;">OS-dependent</span> mechanisms to efficiently distribute requests among worker processes. The number of worker processes is defined by the [worker_processes](https://nginx.org/en/docs/ngx_core_module.html#worker_processes) directive in the **nginx.conf** configuration file and can either be set to a fixed number or configured to adjust automatically to the number of available CPU cores.
2121

22-
## Controlling NGINX
22+
## Control NGINX
2323

2424
To reload your configuration, you can stop or restart NGINX, or send signals to the master process. A signal can be sent by running the `nginx` command (invoking the NGINX executable) with the `-s` argument.
2525

@@ -36,4 +36,4 @@ where `<SIGNAL>` can be one of the following:
3636

3737
The `kill` utility can also be used to send a signal directly to the master process. The process ID of the master process is written, by default, to the **nginx.pid** file, which is located in the **/usr/local/nginx/logs** or **/var/run** directory.
3838

39-
For more information about advanced signals (for performing live binary upgrades, for example), see [Controlling nginx](https://nginx.org/en/docs/control.html) at **nginx.org**.
39+
For more information about advanced signals (for performing live binary upgrades, for example), see [Control nginx](https://nginx.org/en/docs/control.html) at **nginx.org**.

0 commit comments

Comments
 (0)