#!/bin/sh

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

The  for NGINX Plus has been installed.
To enable this module, add the following to /etc/nginx/nginx.conf:

    load_module modules/ngx_http_js_module.so;
    load_module modules/ngx_stream_js_module.so;

then configure nginx as described in the README file:

    /usr/share/doc/nginx-plus-module-prometheus/README.md

and reload nginx.

Metrics suitable for Prometheus will be available at the "/metrics"
location (by default).

Please refer to the module documentation for further details:
https://docs.nginx.com/nginx/admin-guide/dynamic-modules/prometheus-njs/

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

exit 0
