Problem displaying munin reports

I’m not sure that this is the exact forum for this question but I did not see any other general forums for server monitoring issues.

I have a LEMP server (Centos 6.3) and have installed munin according to the following guide ( articles.slicehost.com/2010/3/12 … -on-centos ). I am using the default location for html files ( /var/www/html/munin ). I made sure munin can write there: chown -R munin /var/www/html/munin.

When I go to mydomain.com/munin/index.html, I get a 404 Not Found error. I can see that there is an index file and many other files in var/www/html/munin, but I can’t display them.

Can anyone suggest how to fix this?

Thanks.

This was resolved by changing the root path in the nginx conf file from
root /usr/share/nginx/html;
to
root /var/www/html;

and then restarting nginx.

Thanks for letting us know how you resolved it 8)

Don’t hesitate to return here if/when you run into more bumps.

This was resolved by changing the root path in the nginx conf file from
root /usr/share/nginx/html;
to