diff --git a/content/includes/nginx-plus/install/configure-usage-reporting.md b/content/includes/nginx-plus/install/configure-usage-reporting.md index 04cd9582d..63780c4dc 100644 --- a/content/includes/nginx-plus/install/configure-usage-reporting.md +++ b/content/includes/nginx-plus/install/configure-usage-reporting.md @@ -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">}}). \ No newline at end of file +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">}}). diff --git a/content/includes/nginx-plus/install/copy-crt-and-key.md b/content/includes/nginx-plus/install/copy-crt-and-key.md index df3e20fd7..aef53f29a 100644 --- a/content/includes/nginx-plus/install/copy-crt-and-key.md +++ b/content/includes/nginx-plus/install/copy-crt-and-key.md @@ -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/ -``` \ No newline at end of file +sudo cp .crt /etc/ssl/nginx/nginx-repo.crt +sudo cp .key /etc/ssl/nginx/nginx-repo.key +``` diff --git a/content/includes/nginx-plus/install/pin-to-version/pin-debian-ubuntu-R32.md b/content/includes/nginx-plus/install/pin-to-version/pin-debian-ubuntu-R32.md index 46db48718..126379d99 100644 --- a/content/includes/nginx-plus/install/pin-to-version/pin-debian-ubuntu-R32.md +++ b/content/includes/nginx-plus/install/pin-to-version/pin-debian-ubuntu-R32.md @@ -2,7 +2,7 @@ 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: @@ -10,13 +10,19 @@ To pin NGINX Plus to a specific version (for example, R32): - **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. \ No newline at end of file +3. Save the changes and exit. + +4. Update the repository information: + + ```shell + sudo apt update + ``` diff --git a/content/includes/nginx-plus/install/pin-to-version/pin-rhel8-R32.md b/content/includes/nginx-plus/install/pin-to-version/pin-rhel8-R32.md index 1633f8f94..369a9ebb9 100644 --- a/content/includes/nginx-plus/install/pin-to-version/pin-rhel8-R32.md +++ b/content/includes/nginx-plus/install/pin-to-version/pin-rhel8-R32.md @@ -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. \ No newline at end of file +3. Save the changes and exit. + +4. Update the repository information: + + ```shell + sudo dnf update + ``` diff --git a/content/includes/nginx-plus/install/pin-to-version/pin-rhel9-R32.md b/content/includes/nginx-plus/install/pin-to-version/pin-rhel9-R32.md index 834509a35..6085a8c7d 100644 --- a/content/includes/nginx-plus/install/pin-to-version/pin-rhel9-R32.md +++ b/content/includes/nginx-plus/install/pin-to-version/pin-rhel9-R32.md @@ -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. \ No newline at end of file +3. Save the changes and exit. + +4. Update the repository information: + + ```shell + sudo dnf update + ```