Search results

  1. M

    LiteSpeed reCaptcha

    How do you test it? You may need to remove /dev/shm/lsws, restart LSWS to let it trigger again for the same IP, if that IP has been verified before.
  2. M

    [solved] After Update to 5.4.11 (build 4) [6679] [SSLTicket] ticketCb() SHM keys need rotation

    Nothing. It is for debugging. should have downgrade it to NOTICE.
  3. M

    IE11 SSL not working even with ECDHE-RSA-AES128-SHA enabled

    Switching to ECC certificate is a better solution if you want to use TLSv1.2 and above.
  4. M

    More Need For More Speed: Compressed Cache Files

    Happy New year! Most browser clients support compression, most time, compressed data are served as is to the client. server wont do decompress and compress again if it can be avoided. LiteSpeed can store both BROTLI compressed and GZIP compressed copy in cache, it usually takes less disk...
  5. M

    [solved] Bug or Feature: If page is cached ModSecurity can't work

    Rewrite map is only a data source, it wont do anything to the request, if you want to use rewrite map for the UA signatures, you can do that. But, you need a rewrite rule using the rewrite map to make it work.
  6. M

    [solved] Bug or Feature: If page is cached ModSecurity can't work

    If Apache config is used to config all vhosts (using a host control panel), you can put rewrite rule in the server level config, it will apply to all vhosts.
  7. M

    [solved] Bug or Feature: If page is cached ModSecurity can't work

    that's by design. ModSecurity is expensive, it will defeat the speed of cache, bypassed when possible. if you have to block by user agent, we recommend using other methods, rewrite rule or setenvif + ACL. Other choice is to setup cache vary by UA, do not cache for blocked UA.
  8. M

    [solved] Bug or Feature: LSWS doesn't accept more than 1 response header with the same name

    https://www.php.net/manual/en/function.header.php you need to set the second parameter to avoid PHP replacing first header with the second one.
  9. M

    LiteSpeed vs lsapi_module

    lsapi_module is an Apache module created by CloudLinux to use LSAPI PHP with Apache. It does not work with LiteSpeed, <IfModule LiteSpeed> is used for the LiteSpeed specific configuration that wont apply to Apache.
  10. M

    pkgng support for FreeBSD

    We have no plan to make it available through pkgng for FreeBSD. So yeah, if you would like, you can go ahead building the package. but it wont be the official distribution method.
  11. M

    mod_security REQUEST_HEADERS:Referer anomaly/bug

    pattern match is not regular expression, it does not need to escape "." , so if you did that, it wont match the domain. You just use string as is.
  12. M

    mod_security REQUEST_HEADERS:Referer anomaly/bug

    We need the content of `spam-domains.txt` and the value of `REQUEST_HEADERS:Referer` in the test case, so, we can try to reproduce the bug.
  13. M

    Websockets with Apache like conf

    Can try ProxyPass /url/ ws://127.0.0.1:6001 in the Apache vhost config.
  14. M

    Purge not working with Guzzle

    There is no offical cache plugin for Craft CMS, so I guess you are using rewrite rule to do the cache, so the cache objects are not properly tagged with a cache tag in that. thus, purge by tag wont work.
  15. M

    [Feature] Apply Expires header to a partial response for a range request.

    It is just regular expires header control, no extra configuration required. before it does not apply to range request, now it is.
  16. M

    Is LiteSpeed capable of GPU Offloading?

    LiteSpeed itself wont offload anything to GPU. web server does not need to do much computation involving floating point numbers. :-) But your web application can try to take advantage of that.
  17. M

    Is there any functionality like PHP FPM in the CyberPanel/LiteSpeed?

    This forum is mainly for LSWS enterprise. For Cyberpanel question, please post to https://forums.cyberpanel.net/
  18. M

    Please delete thread.

    What is your rewrite rule? Please try update to the latest 5.4.6 build 2 with command /usr/local/lsws/admin/misc/lsup.sh -f -v 5.4.6
  19. M

    Too slow page load after 5.4.6 with XenForo 2.1.8

    Are you using 5.4.6 build 0, or build 1? 5.4.6 build 1 contains a bug fix for HTTP/2. Can you please open a ticket with server access info. We need to investigate.
Top