#!/bin/sh

cat <<BANNER
----------------------------------------------------------------------

The 3rd-party encrypted session dynamic module for NGINX Plus has been installed.
To enable this module, add the following to /etc/nginx/nginx.conf
and reload nginx:

    load_module modules/ndk_http_module.so;
    load_module modules/ngx_http_encrypted_session_module.so;

Note that ndk_http_module.so must be placed first.

Please refer to the modules documentation for further details:
https://github.com/openresty/encrypted-session-nginx-module

----------------------------------------------------------------------
BANNER

exit 0
