I want to automatically login to Nagvis with my nagiosadmin account (usually I have to log on Nagios XI first and then to Nagvis to access the maps but I would like to login just once for both)
I found this on the Nagvis FAQ:
The following mod_rewrite config maps the user "nagiosadmin" to NagVis:
RewriteEngine on
RewriteLock var/log/rewrite.lck
RewriteLog /dev/null
RewriteLogLevel 0
# The following line is the really important step,
# it tells the webserver that the user "nagiosadmin" has
# successfully authenticated and is sending the request,
# regardless who is sending it really.
RewriteRule /nagvis/ - [E=REMOTE_USER:nagiosadmin]
My problem is that I don't know where I have to put this (I tried on http.conf but nothing happened)
Does anyone did configure the autologin and succeed?