NagiosXi UI Access though Proxy

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
vivekb
Posts: 4
Joined: Mon Jul 03, 2017 8:25 am

NagiosXi UI Access though Proxy

Post by vivekb »

Hi All,

I would like to access Nagios XI from a remote Proxy Server. I am able to pull up the static pages. But the pages with Javascript/CSS/images etc are not rendered . Is there a solution for this ?

public internet --> Public Facing Server ( As a Proxy) -- > NagiosXI

Apache Configuration on Proxy Server as below
=========================
<VirtualHost _HOST_:80>
ProxyRequests On
SSLProxyEngine On
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off


AddType text/css css
AddType text/xml xml
AddType image/gif gif
AddType image/jpeg jpeg jpg
AddType application/x-javascript js
AddType application/atom+xml atom
AddType application/rss+xml rss

ProxyPass /nagiosxi http://<nagiosserver>/nagiosxi
ProxyPassReverse /nagiosxi http://<nagiosserver>/nagiosxi

ProxyPass /nrdp http://<nagiosserver>/nrdp
ProxyPassReverse /nrdp http://<nagiosserver>/nrdp


ProxyPass /nagios http://<nagiosserver>/nagios/share
ProxyPassReverse /nagios http://<nagiosserver>/nagios/share

ProxyPass /nagios/cgi-bin http://<nagiosserver>/nagios/sbin
ProxyPassReverse /nagios/cgi-bin http://<nagiosserver>/nagios/sbin

<Location />
Allow from all
</Location>
</VirtualHost>
=================================================

Regards
Vivek
dwhitfield
Former Nagios Staff
Posts: 4583
Joined: Wed Sep 21, 2016 10:29 am
Location: NoLo, Minneapolis, MN
Contact:

Re: NagiosXi UI Access though Proxy

Post by dwhitfield »

The following may be of use: https://support.nagios.com/kb/article.php?id=147

Although we can try to help, please note the first sentence of that KB:
We do not officially support Nagios XI when you install and use proxy software that restricts traffic to or from the Nagios XI server.
Locked