Hello,
I have Nginx as reverse-proxy for Apache on port 8080.
I'm trying to use Munin to monitor the server's usage, but I am unable to see the Apache's server-status.
on Apache configuration Server-Status is enabled and allowed for all, but when I go to: www.domain.com/server-status, the server redirects me into the website, were I get the 404 not found page.
I've tried to specify:
[code]
location = /server-status {
proxy_pass http://local; #local is an upstream set earlier
}
[code]
but nothing changed.
http://127.0.0.1/server-status from within the server leads to the same situation (also tried with port 8080).
any idea how to set this correctly?