An example command to check if any service is listening on port 7080.
netstat -antupl | grep 7080
You can check for other ports like 80 and 443 for sure.
curl looks fine. Changing port, webadmin php version, and a reboot are not required. If it failed to bring it up, please check if it's caused by another service listening on the same port with the netstat tool. You can also see the failed reason from the error log.
If you run `curl -IkL https://127.0.0.1:7080/` and it returns 200 status code in the end, which means webadmin is working properly. I don't think Cloudflare can proxy port 7080. Can you double check on this?
I came across a similar case recently, so I’ve added a solution for anyone who wants to build PHP 7.4 on Ubuntu 24.04 manually.
https://docs.openlitespeed.org/config/php/custom/#building-old-php-on-new-system
CyberPanel is a control panel; unless it’s compromised, it’s likely not related to the hacking issue.
To secure a WordPress website from the web server side, you can protect the wp-login.php and wp-admin pages using a static context. ReCAPTCHA and throttling are also supported by the web...
Proxy context does not support rewrite. You might want to follow https://docs.openlitespeed.org/config/reverseproxy/#rewrite-rules to set up the proxy with rewrite, then you can customize the rewriterule from there.
Adding those parameters to the environment looks correct, though I’m not sure whether DOCUMENT_ROOT is the right one or if PHP-FPM actually receives it.
Context might have higher priority than rewrite rules. Instead of using a FastCGI context, you can create a PHP handler for FastCGI so that...