Recent content by Cold-Egg

  1. Cold-Egg

    https becomes unresponsive

    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.
  2. Cold-Egg

    https becomes unresponsive

    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.
  3. Cold-Egg

    https becomes unresponsive

    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?
  4. Cold-Egg

    Cyberpanel+OLS serves Cert identity of the main domain for the identity of the subdomain!

    Hi, can you Inbox me the OLS config so I can help to verify it for you?
  5. Cold-Egg

    lsphp74 on Ubuntu 24.04

    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
  6. Cold-Egg

    Web Admin login error after update to 1.8.4

    Hi @Cardiff-Paul The issue should have been fixed in the latest build(7). If you have any further questions, feel free to report.
  7. Cold-Egg

    How to remove “Proudly Served by LiteSpeed Web Server…” footer from directory listing

    It's generated via /usr/local/lsws/share/autoindex/autoindex_include.php Maybe you can back up the script and customize it, and see if it works.
  8. Cold-Egg

    Web Admin login error after update to 1.8.4

    Thanks for the report, we will look into this!
  9. Cold-Egg

    Repository for Debian 13 "Trixie"

    Thanks for the report, and it's done.
  10. Cold-Egg

    2 website got hacked for using cyberpanel

    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...
  11. Cold-Egg

    Does rewrite works in context at VHost level?

    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.
  12. Cold-Egg

    Repository for Debian 13 "Trixie"

    We had no choice but to discontinue lsphp84-imap, since its required dependency is not available in the default Debian 13 sources.
  13. Cold-Egg

    Repository for Debian 13 "Trixie"

    @PaulK @paul_m @epionier OpenLiteSpeed and all PHP packages are pushed, let me know if anything is still missing.
  14. Cold-Egg

    Chown warning on installation

    @lkjhfgcr Pushed openlitspeed v1.8.4-4 package for bookworm, feel free to give it a try and let us know if there are any issues.
  15. Cold-Egg

    Combining an OLS host with multiple docker containers

    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...
Top