Search results

  1. Cold-Egg

    Ubuntu 24.04 Support

    Hi, The package should support 24.04 already, but there are still some minor issues that need to be fixed. I'd recommend you to try it after a few days.
  2. Cold-Egg

    How configure ASGI instead of default WSGI

    Do you want to use the production site and Django with the same domain? To set up a reverse proxy, you don't need to stop anything, please check https://docs.openlitespeed.org/docs/advanced/proxy setup guide. A `service lsws stop` could stop it, but you don't have to do it. Simply change the...
  3. Cold-Egg

    https redirect issue

    Sure thing.
  4. Cold-Egg

    https redirect issue

    It's not needed, you can remove it or change Apache's port number from e.g. 80/443 to 1080/1443.
  5. Cold-Egg

    https redirect issue

    The listener with Port 80 is not up, maybe you have a config issue or another service is using the same port, you might need to fix this part first.
  6. Cold-Egg

    Assistance Required with ModSecurity Rule Compatibility for OpenLiteSpeed

    I tried to use https://github.com/owasp-modsecurity/ModSecurity/wiki/Reference-Manual-(v2.x)-Variables#session as an example, and it works on my OLS site. SecRule REQUEST_COOKIES:PHPSESSID !^$ "phase:2,id:1070,nolog,pass,setsid:%{REQUEST_COOKIES.PHPSESSID}" SecRule REQUEST_HEADERS:User-Agent...
  7. Cold-Egg

    How to install ionCube 13 in PHP 8.1??

    CyberPanel uses the package from https://rpms.litespeedtech.com/debian/pool/main/jammy/ Which version is lsphp81-ioncube_12.0.5. I will forward the update request(ioncube 13) to our build master but no ETA. To get the version now, you might want to build it on your own, or wait for the new...
  8. Cold-Egg

    Latest version number mismatch (Cannot find v1.8.0)

    Possibly our dev has some issues that need to be checked. You can still use 1.7.19 and lsup to v.1.8.0 or even 1.8.1 as a temporary solution.
  9. Cold-Egg

    https redirect issue

    Try putting the following rules on the top of your .htaccess file, graceful restart OLS, and see if it works. RewriteCond %{HTTPS} !on RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI}/$1 [R,L]
  10. Cold-Egg

    Assistance Required with ModSecurity Rule Compatibility for OpenLiteSpeed

    I didn't test it, the first two rules look ok to me but 3&4. If you check the log, is the rule being hit?
  11. Cold-Egg

    How do I add 400 domain Alias + SSL to them?

    You might need to edit the listener as well. For wildcard, you might want to check this post from CyberPanel forum https://community.cyberpanel.net/t/how-to-set-up-wildcard-ssl-on-cyberpanel-openlitespeed/30652
  12. Cold-Egg

    OneClick Install: Unable To Locate Package OpenLiteSpeed

    okok, not sure what's the old command you ran, but this one is correct.
  13. Cold-Egg

    OneClick Install: Unable To Locate Package OpenLiteSpeed

    It seems working fine. So what and how did you fix the issue?
  14. Cold-Egg

    Rewrite rules for all sites in httpd_config.conf ?

    You are right, can not just include it in the server config file, need to include it in the virtual host config file.
  15. Cold-Egg

    Files automatically minified and saved over originals

    Maybe it's similar to this issue? https://stackoverflow.com/questions/9866597/uploading-php-files-via-ftp-all-linebreaks-and-crs-are-lost-upon-upload
  16. Cold-Egg

    OneClick Install: Unable To Locate Package OpenLiteSpeed

    Hi, I can't reproduce it, could you run the following and share the output? sudo wget -O - https://repo.litespeed.sh | sudo bash -x
  17. Cold-Egg

    Missing LSPHP 8.3.x modules

    Thank you for being so patient, the build master will prepare it when available, but no ETA.
  18. Cold-Egg

    Setting up a subdomain without WordPress

    Good. If subdomain.A.com:8088/index.html loads fine, but subdomain.A.com:8088/, then it's auto index problem. But you mentioned subdomain.A.com returns a 404, which is probably a domain mapping issue on the listener, have you map the domain on port 80/443?
  19. Cold-Egg

    Setting up a subdomain without WordPress

    Do you have port 8088 allowed on the server? :unsure:
Top