#!/bin/sh

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

Console Light for Angie has been installed.
To enable this functionality, add the following snippet to Angie
configuration:

    location /console {
        allow 127.0.0.1;
        deny all;

        alias /usr/share/angie-console-light/html;
        index index.html;

        location /console/api/ {
            api /status/;
        }
    }

Don't forget to apply these changes as:

    $ sudo angie -t && sudo service angie reload

For further details please refer to the following page:
https://angie.software/en/console/

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

exit 0
