Solved NagVis Problem

Hello all!!

I am trying to install NagVis with apache24, but not working at all. I'm using FreeBSD 10.1. NagVis installed at ports, put the entries in the httpd configuration and even when I try to access or says that the directory does not exist, or that the permission is denied.
Would help me?

Thank you.
 
Here

Code:
[Thu Jan 15 15:35:16.174178 2015] [access_compat:error] [pid 87057] [client 192.168.1.2:49582] AH01797: client denied by server configuration: /usr/local/www/nagvis/etc/

[Thu Jan 15 15:35:22.125330 2015] [access_compat:error] [pid 87058] [client 192.168.1.2:49610] AH01797: client denied by server configuration: /usr/local/www/nagvis/etc/

[Thu Jan 15 16:22:01.802612 2015] [access_compat:error] [pid 87765] [client 192.168.1.2:52936] AH01797: client denied by server configuration: /usr/local/www/nagvis/etc/
 
Hello all,
It is working now!
The problem was in apache configuration.

Here is the original (NOT WORKING)
Code:
Alias /nagvis "/usr/local/www/nagvis/"

<Directory "/usr/local/www/nagvis">
  Options FollowSymLinks
  AllowOverride None
  Order allow,deny
  Allow from all
And here is what works:
Code:
Alias /nagvis "/usr/local/www/nagvis/share/"

<Directory "/usr/local/www/nagvis">
  Options Indexes FollowSymLinks Includes ExecCGI
  AllowOverride None
  Order allow,deny
  Allow from all
I need to copy everything from /usr/local/www/nagvis/docs/ to /usr/local/www/nagvis/share/docs

Thanks all!
 
Back
Top