Nagios XI's BasePath in nginx redirection
Posted: Thu May 02, 2019 5:33 am
We need to hide Nagios XI and other apps behind a single portal with nginx running.
And I can not find something like BasePath settings on Nagios XI to help me set up a proxy_pass config on that nginx.
e.g.
1. Do you provide basepath settings that we can directly redirect to the inner Nagios XI?
2. Or, could you provide some advice to achieve the hiding?
And I can not find something like BasePath settings on Nagios XI to help me set up a proxy_pass config on that nginx.
e.g.
Code: Select all
location /shadow/nagiosxi {
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/conf.d/.nxi.htpasswd;
proxy_pass http://<nagiosxi_ip>:80/;
}2. Or, could you provide some advice to achieve the hiding?