Hi,
I have an apache-2.4.48 server on fedora34 and would like to enable mod_status to be able to obtain server status information. However, the docs appear to say the only way to access it is over port 80, not SSL. Is that correct?
Chrome is also expecting the site to be over SSL, of course.
https://httpd.apache.org/docs/2.4/mod/mod_status.html
Here is my virtual host entry on port 80:
<VirtualHost 209.216.111.156:80>
ServerName darwin-perf.example.com
ServerAdmin admin@xxxxxxxxxxx
ErrorLog /var/www/otherdomains-443/logs/error_log
CustomLog /var/www/otherdomains-443/logs/access_log timing
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\"
\"%{User-agent}i\" %T/%D %I/%O/%B H:%H U:%U dp80 s:%s V:%V v:%v"
timing
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from 127.0.0.1 localhost 192.168.1.0/24
</Location>
<Location /server-info>
SetHandler server-info
Order Deny,Allow
Allow from ip 127.0.0.1 localhost 192.168.1.0/24
</Location>
<Location /perl-status>
SetHandler perl-script
PerlResponseHandler Apache2::Status
Order deny,allow
Deny from all
Allow from ip 127.0.0.1 localhost 192.168.1.0/24
</Location>
<FilesMatch
"^ping|status-fpm$">
RewriteEngine Off
SetHandler
"proxy:unix:/run/php-fpm/linuxsecurity.sock|fcgi://localhost"
</FilesMatch>
</VirtualHost>