Como posso alterar o caminho com o qual acesso o Nagios no meu navegador?

2

Eu normalmente acesso nagios em mysite.com/nagios3/ mas como eu mudo isso?

No arquivo /etc/nagios3/apache2.conf existem estas (e outras) variáveis:

ScriptAlias /cgi-bin/nagios3 /usr/lib/cgi-bin/nagios3
ScriptAlias /nagios3/cgi-bin /usr/lib/cgi-bin/nagios3

# Where the stylesheets (config files) reside
Alias /nagios3/stylesheets /etc/nagios3/stylesheets

# Where the HTML pages live
Alias /nagios3 /usr/share/nagios3/htdocs

Eu mudei para isso:

ScriptAlias /cgi-bin/test /usr/lib/cgi-bin/nagios3
ScriptAlias /test/cgi-bin /usr/lib/cgi-bin/nagios3

# Where the stylesheets (config files) reside
Alias /test/stylesheets /etc/nagios3/stylesheets

# Where the HTML pages live
Alias /test /usr/share/nagios3/htdocs

Então eu posso acessar nagios em mysite.com/test - no entanto, as imagens não estão sendo carregadas, pois ainda estão sendo referenciadas em / nagios3 / images /...

    
por cwd 11.12.2011 / 20:39

1 resposta

5

Edite o /etc/nagios3/cgi.cfg e defina:

url_html_path=/test
    
por 11.12.2011 / 20:54