The Encrypted Session dynamic module provides encryption and decryption support for NGINX variables based on AES-256 with MAC. It is usually used with the Set-Misc dynamic module and the NGINX rewrite module.
Prerequisites
Section titled “Prerequisites”-
Check the Technical Specifications page to verify that the module is supported by your operating system.
-
Make sure that your operating system is configured to retrieve binary packages from the official NGINX Plus repository. See installation instructions for your operating system on the Installing NGINX Plus page.
-
Prior to installing the module, verify that the NDK module is already installed.
Installation
Section titled “Installation”-
Install the Encrypted Session module package
nginx-plus-module-encrypted-sessionfrom the official NGINX Plus repository.For Amazon Linux 2, CentOS, Oracle Linux, and RHEL:
Terminal window sudo yum update && \sudo yum install nginx-plus-module-encrypted-sessionfor Amazon Linux 2023, AlmaLinux, Rocky Linux:
Terminal window sudo dnf update && \sudo dnf install nginx-plus-module-encrypted-sessionFor Debian and Ubuntu:
Terminal window sudo apt update && \sudo apt install nginx-plus-module-encrypted-sessionFor SLES:
Terminal window sudo zypper refresh && \sudo zypper install nginx-plus-module-encrypted-sessionFor Alpine:
Terminal window apk add nginx-plus-module-encrypted-sessionFor FreeBSD:
Terminal window sudo pkg update && \sudo pkg install nginx-plus-module-encrypted-session
Configuration
Section titled “Configuration”After installation you will need to enable and configure the module in F5 NGINX Plus configuration file nginx.conf.
-
Put the
load_moduledirective in the top‑level (“main”) context of NGINX Plus configuration file, nginx.conf:load_module modules/ndk_http_module.so;load_module modules/ngx_http_encrypted_session_module.so;http {# ...}
The directives must be in this order. :::
-
Perform additional configuration as required by the module.
-
Test the NGINX Plus configuration. In a terminal, type-in the command:
Terminal window nginx -tExpected output of the command:
Terminal window nginx: the configuration file /etc/nginx/nginx.conf syntax is oknginx: configuration file /etc/nginx/nginx.conf is successful -
Reload the NGINX Plus configuration to enable the module:
Terminal window nginx -s reload