Skip to content

Commit c65408e

Browse files
authored
Minor fixes to NGINX Plus Installation Guide. (#381)
1 parent dc63cf2 commit c65408e

File tree

5 files changed

+33
-16
lines changed

5 files changed

+33
-16
lines changed

content/includes/nginx-plus/install/configure-usage-reporting.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
docs:
33
---
44

5-
In the `nginx.conf` file, configure license reporting to F5 licensing endpoint using the
6-
[`mgmt {}`](https://nginx.org/en/docs/ngx_mgmt_module.html) block. By default, no configuration is required. However, it becomes necessary when your NGINX Plus instance is installed in a disconnected environment, uses NGINX Instance manager for usage reporting, or uses a custom path for the license file. For more information, see [About Subscription Licenses]({{< ref "/solutions/about-subscription-licenses.md">}}).
5+
Make sure license reporting to F5 licensing endpoint is configured. By default, no configuration is required. However, it becomes necessary when NGINX Plus is installed in a disconnected environment, uses NGINX Instance Manager for usage reporting, or uses a custom path for the license file. Configuration can be done in the [`mgmt {}`](https://nginx.org/en/docs/ngx_mgmt_module.html) block of the NGINX Plus configuration file (`/etc/nginx/nginx.conf`). For more information, see [About Subscription Licenses]({{< ref "/solutions/about-subscription-licenses.md">}}).

content/includes/nginx-plus/install/copy-crt-and-key.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
docs:
33
---
44

5-
Copy the downloaded **nginx-repo.crt** and **nginx-repo.key** files to the **/etc/ssl/nginx/** directory:
5+
Copy the downloaded **.crt** and **.key** files to the **/etc/ssl/nginx/** directory and make sure they are named **nginx-repo.crt** and **nginx-repo.key**:
66

77
```shell
8-
sudo cp nginx-repo.crt /etc/ssl/nginx/
9-
sudo cp nginx-repo.key /etc/ssl/nginx/
10-
```
8+
sudo cp <downloaded-file-name>.crt /etc/ssl/nginx/nginx-repo.crt
9+
sudo cp <downloaded-file-name>.key /etc/ssl/nginx/nginx-repo.key
10+
```

content/includes/nginx-plus/install/pin-to-version/pin-debian-ubuntu-R32.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,27 @@
22
docs: DOCS-000
33
---
44

5-
To pin NGINX Plus to a specific version (for example, R32):
5+
To pin NGINX Plus to a specific version (for example, R33):
66

77
1. Edit the `/etc/apt/sources.list.d/nginx-plus.list` file.
88
1. Update the repository base URL to the desired version:
99

1010
- **For Ubuntu**:
1111

1212
```shell
13-
https://pkgs.nginx.com/plus/R32/ubuntu
13+
https://pkgs.nginx.com/plus/R33/ubuntu
1414
```
1515

1616
- **For Debian**:
1717

1818
```shell
19-
https://pkgs.nginx.com/plus/R32/debian
19+
https://pkgs.nginx.com/plus/R33/debian
2020
```
2121

22-
3. Save the changes and exit.
22+
3. Save the changes and exit.
23+
24+
4. Update the repository information:
25+
26+
```shell
27+
sudo apt update
28+
```

content/includes/nginx-plus/install/pin-to-version/pin-rhel8-R32.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,19 @@
22
docs: DOCS-000
33
---
44

5-
To pin NGINX Plus to a specific version (for example, R32):
5+
To pin NGINX Plus to a specific version (for example, R33):
66

77
1. Edit the `/etc/yum.repos.d/nginx-plus-8.repo` file.
88
1. Update the repository base URL to the desired version:
99

1010
```shell
11-
baseurl=https://pkgs.nginx.com/plus/R32/centos/8/$basearch/
11+
baseurl=https://pkgs.nginx.com/plus/R33/centos/8/$basearch/
1212
```
1313

14-
3. Save the changes and exit.
14+
3. Save the changes and exit.
15+
16+
4. Update the repository information:
17+
18+
```shell
19+
sudo dnf update
20+
```

content/includes/nginx-plus/install/pin-to-version/pin-rhel9-R32.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,19 @@
22
docs: DOCS-000
33
---
44

5-
To pin NGINX Plus to a specific version (for example, R32):
5+
To pin NGINX Plus to a specific version (for example, R33):
66

77
1. Edit the `/etc/yum.repos.d/plus-9.repo` file.
88
1. Update the repository base URL to the desired version:
99

1010
```shell
11-
baseurl=https://pkgs.nginx.com/plus/R32/centos/9/$basearch/
11+
baseurl=https://pkgs.nginx.com/plus/R33/centos/9/$basearch/
1212
```
1313

14-
3. Save the changes and exit.
14+
3. Save the changes and exit.
15+
16+
4. Update the repository information:
17+
18+
```shell
19+
sudo dnf update
20+
```

0 commit comments

Comments
 (0)