I just noticed this is periodically happening in the logs
File not found [/usr/local/apache/htdocs/whm-server-status]
I vaguely recall cpanel polls that normally to make sure things are running and possibly do a restart if it's not there?
This is a problem because while it's in httpd.conf, litespeed doesn't support the directive
grep -A 5 whm-server-status /usr/local/apache/conf/httpd.conf
Technically this is a cpanel problem but because litespeed is replacing apache, I am not sure how to best address it.
I have to remember where the setting is that does this polling, I guess it's not really required.
File not found [/usr/local/apache/htdocs/whm-server-status]
I vaguely recall cpanel polls that normally to make sure things are running and possibly do a restart if it's not there?
This is a problem because while it's in httpd.conf, litespeed doesn't support the directive
grep -A 5 whm-server-status /usr/local/apache/conf/httpd.conf
Code:
<Location /whm-server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>
Technically this is a cpanel problem but because litespeed is replacing apache, I am not sure how to best address it.
I have to remember where the setting is that does this polling, I guess it's not really required.