Skip to content

Minor fixes to NGINX Plus Installation Guide. #381

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
docs:
---

In the `nginx.conf` file, configure license reporting to F5 licensing endpoint using the
[`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">}}).
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">}}).
8 changes: 4 additions & 4 deletions content/includes/nginx-plus/install/copy-crt-and-key.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
docs:
---

Copy the downloaded **nginx-repo.crt** and **nginx-repo.key** files to the **/etc/ssl/nginx/** directory:
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**:

```shell
sudo cp nginx-repo.crt /etc/ssl/nginx/
sudo cp nginx-repo.key /etc/ssl/nginx/
```
sudo cp <downloaded-file-name>.crt /etc/ssl/nginx/nginx-repo.crt
sudo cp <downloaded-file-name>.key /etc/ssl/nginx/nginx-repo.key
```
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,27 @@
docs: DOCS-000
---

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

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

- **For Ubuntu**:

```shell
https://pkgs.nginx.com/plus/R32/ubuntu
https://pkgs.nginx.com/plus/R33/ubuntu
```

- **For Debian**:

```shell
https://pkgs.nginx.com/plus/R32/debian
https://pkgs.nginx.com/plus/R33/debian
```

3. Save the changes and exit.
3. Save the changes and exit.

4. Update the repository information:

```shell
sudo apt update
```
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@
docs: DOCS-000
---

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

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

```shell
baseurl=https://pkgs.nginx.com/plus/R32/centos/8/$basearch/
baseurl=https://pkgs.nginx.com/plus/R33/centos/8/$basearch/
```

3. Save the changes and exit.
3. Save the changes and exit.

4. Update the repository information:

```shell
sudo dnf update
```
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@
docs: DOCS-000
---

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

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

```shell
baseurl=https://pkgs.nginx.com/plus/R32/centos/9/$basearch/
baseurl=https://pkgs.nginx.com/plus/R33/centos/9/$basearch/
```

3. Save the changes and exit.
3. Save the changes and exit.

4. Update the repository information:

```shell
sudo dnf update
```
Loading