Recent content by zEitEr

  1. zEitEr

    HTTP headers in lower case - why?

    OK, I see. Thank you for your time and support here.
  2. zEitEr

    HTTP headers in lower case - why?

    OK, Let's check it out. My browser sends the following headers: Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 Accept-Encoding: gzip, deflate, br Cache-Control: max-age=0 Content-Length: 28...
  3. zEitEr

    HTTP headers in lower case - why?

    Hello, Configured an OpenLiteSpeed to work as a reverse proxy for CSF/LFD UI per available guides And I found an issue with HTTP-headers, which are get in a lower case by a Perl script. Mar 1 20:11:23 server2 lfd[790325]: UI debug: header [host] [127.0.0.1:1035] Mar 1 20:11:23 server2...
  4. zEitEr

    OpenLiteSpeed 1.5.2 segfaults

    Seems to be fixed. Thanks. # /usr/local/lsws/bin/litespeed -v LiteSpeed/1.4.49 Open (built: Sat Jul 6 12:45:47 UTC 2019) (DEBUG) module versions: modpagespeed 2.2-1.11.33.4 cache 1.61 modinspector 1.1 uploadprogress 1.1 mod_security 1.1
  5. zEitEr

    OpenLiteSpeed 1.5.2 segfaults

    The same issue happened last night with 1.4.49 (after downgrade) already: # /usr/local/lsws/bin/openlitespeed -v LiteSpeed/1.4.49 Open (built: Fri Jun 28 15:24:10 UTC 2019) module versions: modpagespeed 2.2-1.11.33.4 cache 1.61 modinspector 1.1...
  6. zEitEr

    OpenLiteSpeed 1.5.2 segfaults

    Hello, Probably it has been already reported and you are on a way to fix it. Or should I provide details of the recent segfaults in OpenLiteSpeed 1.5.2? segfault at 0 ip 00007f871cbe8137 sp 00007ffc71c30d78 error 4 in libc-2.17.so[7f871cb4b000+1c2000] Last 3 nights brought a challenge when...
  7. zEitEr

    How to block access to xmlrpc.php file?

    Here is another solution if rules need to be added directly into each virtualHost (in case you use templates for auto-generating virtualHost like DirectAdmin does): rewrite { enable 1 autoLoadHtaccess 1 RewriteRule ^/(xmlrpc|wp-trackback)\.php - [F,L,NC] }
  8. zEitEr

    Rewrite rules in native format within virtualHost

    Thank you for the links. That turned out to be easier than I thought. Here the snippet that worked for me: rewrite { enable 1 autoLoadHtaccess 1 RewriteRule ^/(xmlrpc|wp-trackback)\.php - [F,L,NC] } both with OpenLiteSpeed 1.4.48 and 1.5.2
  9. zEitEr

    Rewrite rules in native format within virtualHost

    Hello, Searching for syntax information on how to add rewrite rules using a OLS native format within a virtualHost. So I want to adapt: <IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^(xmlrpc\.php|wp-trackback\.php) - [F,L,NC] </IfModule> Currently using this...
Top