Skip to content

Commit 0fdb9f4

Browse files
authored
Merge branch 'main' into blocking-action
2 parents 00a0b4c + 433ddb6 commit 0fdb9f4

File tree

4 files changed

+41
-21
lines changed

4 files changed

+41
-21
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ To understand how we use Git in this repository, read our [Git conventions](/doc
4141
The broad workflow is as follows:
4242

4343
- Fork the NGINX repository
44+
- If you're an F5/NGINX user, you can work from a clone
4445
- Create a branch
4546
- Implement your changes in your branch
4647
- Submit a pull request (PR) when your changes are ready for review

content/includes/nim/tech-specs/supported-distros.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@ The following table lists the Linux distributions supported by NGINX Instance Ma
88

99
{{<bootstrap-table "table table-striped table-bordered">}}
1010

11-
| Distribution | Version | Architecture | NGINX Instance Manager Support | NGINX App Protect Support |
12-
|-----------------|----------------------------------------|------------------|---------------------------------------------------|----------------------------------------------------|
13-
| Amazon Linux | 2 LTS | x86_64 | Supported | **Support discontinued as of 2.18.0** |
14-
| CentOS | 7.4 and later in the 7.x family | x86_64 | **Support discontinued as of 2.17.0** | **Support discontinued as of 2.17.0** |
15-
| Debian | 11<hr>12 | x86_64<hr>x86_64 | Supported<hr>Supported on 2.13.0+ | Supported<hr>Supported |
16-
| Oracle Linux | 7.4 and later in the 7.x family<hr>8.0 and later in the 8.x family | x86_64<hr>x86_64 | **Support discontinued as of 2.17.0**<hr>Supported on 2.6.0+ | **Support discontinued as of 2.17.0**<hr>Supported |
17-
| RHEL | 7.4 and later in the 7.x family<hr>8.x and later in the 8.x family<hr>9.x and later in the 9.x family | x86_64<hr>x86_64<hr>x86_64 | **Support discontinued as of 2.17.0**<hr>Supported<hr>Supported on 2.6.0+ | **Support discontinued as of 2.17.0**<hr>Supported<hr>Supported |
18-
| Ubuntu | 20.04<hr>22.04<hr>24.04 | x86_64<hr>x86_64<hr>x86_64 | Supported<hr>Supported on 2.3.0+<hr>Supported on 2.18.0+ | **Support discontinued as of NAP 4.15.0/5.7.0**<hr>Supported<hr>Supported |
11+
| Distribution | Version | Architecture | NGINX Instance Manager Support | NGINX App Protect Support |
12+
|-----------------|----------------------------------------|------------------|-----------------------------------------------------|----------------------------------------------------|
13+
| Debian | 11<hr>12 | x86_64<hr>x86_64 | Supported<hr>Supported | Supported<hr>Supported |
14+
| Oracle Linux | 8.0 and later in the 8.x family | x86_64 | Supported | Supported |
15+
| RHEL | 8.0 and later in the 8.x family<hr>9.0 and later in the 9.x family | x86_64<hr>x86_64 | Supported<hr>Supported | Supported<hr>Supported |
16+
| Ubuntu | 22.04<hr>24.04 | x86_64<hr>x86_64 | Supported<hr>Supported on 2.18.0+ | Supported<hr>Supported |
1917

2018
{{</bootstrap-table>}}
2119

content/nginx-one/connect-instances/set-up-nginx-proxy-for-nginx-one.md

Lines changed: 34 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -69,18 +69,40 @@ To set up your other NGINX instances to use the proxy instance to connect to NGI
6969
2. Open the NGINX Agent configuration file (**/etc/nginx-agent/nginx-agent.conf**) with a text editor.
7070
3. Add the following configuration. Replace `YOUR_DATA_PLANE_KEY_HERE` with your actual data plane key and `YOUR_PROXY_IP_ADDRESS_HERE` with the IP address of the NGINX proxy instance.
7171
72-
```yaml
73-
command:
74-
server:
75-
# Replace YOUR_PROXY_IP_ADDRESS_HERE with the IP address of the NGINX proxy instance.
76-
host: YOUR_PROXY_IP_ADDRESS_HERE
77-
port: 443
78-
auth:
79-
# Replace YOUR_DATA_PLANE_KEY_HERE with your NGINX One Console data plane key.
80-
token: "YOUR_DATA_PLANE_KEY_HERE"
81-
tls:
82-
skip_verify: False
83-
```
72+
{{< tabs name="Configure NGINX Agent to use the proxy" >}}
73+
74+
{{%tab name="NGINX Agent 3.x"%}}
75+
76+
```yaml
77+
command:
78+
server:
79+
# Replace YOUR_PROXY_IP_ADDRESS_HERE with the IP address of the NGINX proxy instance.
80+
host: YOUR_PROXY_IP_ADDRESS_HERE
81+
port: 5000
82+
auth:
83+
# Replace YOUR_DATA_PLANE_KEY_HERE with your NGINX One Console data plane key.
84+
token: "YOUR_DATA_PLANE_KEY_HERE"
85+
tls:
86+
skip_verify: False
87+
server_name: "agent.connect.nginx.com"
88+
```
89+
90+
{{%/tab%}}
91+
{{%tab name="NGINX Agent 2.x"%}}
92+
```yaml
93+
command:
94+
server:
95+
# Replace YOUR_PROXY_IP_ADDRESS_HERE with the IP address of the NGINX proxy instance.
96+
host: YOUR_PROXY_IP_ADDRESS_HERE
97+
port: 443
98+
auth:
99+
# Replace YOUR_DATA_PLANE_KEY_HERE with your NGINX One Console data plane key.
100+
token: "YOUR_DATA_PLANE_KEY_HERE"
101+
tls:
102+
skip_verify: False
103+
```
104+
{{%/tab%}}
105+
{{%/tabs%}}
84106
85107
4. Restart NGINX Agent:
86108

content/nim/nginx-app-protect/security-monitoring/set-up-app-protect-instances.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ Take the steps below to update your NGINX App Protect WAF configurations by usin
211211
1. Next, edit the desired configuration file. You will add directives that reference the security policies bundle and enable the NGINX App Protect WAF logs required by the Security Monitoring dashboards. An example configuration is provided below.
212212

213213
```nginx
214-
app_protect_enable on;
215214
app_protect_enable on;
216215
app_protect_policy_file "/etc/nms/NginxDefaultPolicy.tgz";
217216
app_protect_security_log_enable on;

0 commit comments

Comments
 (0)