<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: Arial; font-size: 10pt; color: #000000'>I would like to enable monitoring for the proxmox Apache server. For my other apache servers I'm using the Apache status module.<br>When I go to http://<PROXMOX IP>/server-status, I get redirected to HTTPS and I have to login into Proxmox to see the information.<br><br>I've modified the pve.conf file to:<br><br>[...]<br><VirtualHost *:80><br> #RewriteLog "/root/rewrite.log"<br> #RewriteLogLevel 10<br> RewriteEngine on<br> RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)<br> RewriteRule .* - [F]<br> RewriteCond %{REQUEST_URI} !^/server-status<br> RewriteCond %{REQUEST_URI} !^/nrd/<br> RewriteCond %{REQUEST_URI} !^/images/<br> RewriteCond %{REQUEST_URI} !^/css/<br> RewriteCond %{REQUEST_URI} !^/javascript/<br> RewriteCond %{REQUEST_URI} !^/vncterm/<br> RewriteCond %{REQUEST_URI} !^/.*\.js$<br> RewriteCond %{REQUEST_URI} !^/login.pl$<br> RewriteRule ^/(.*) https://%{HTTP_HOST}/$1 [L,R]<br></VirtualHost><br><br>Now I no longer get redirected to HTTPS for the /server-status URL, but still need to login. How can I disable the login for the /server-status URL?<br><br>Christof<br></div></body></html>