Search results

  1. S

    Mod-security at vhost level

    hi, I have 5 domains I want to enable mod-sec on 3 domains only is this possible? I have added this conf in httpd_config.conf but this will be applied to all domains module mod_security { modsecurity on modsecurity_rules ` SecDebugLogLevel 0 SecDebugLog /usr/local/lsws/logs/modsec.log...
  2. S

    suspendedVhosts

    Hi, I have suspended any vhost i want to show a custom error page is this possible? I have added this in httpd_config.conf suspendedVhosts abc.com to suspend the vhost but it shows me 403 forbidden I want to show some custom error page
  3. S

    Main OLS Configuration File

    hi if I change main configuration file name from /usr/local/lsws/http_config.conf to /usr/local/lsws/httpd.conf does it work ?
  4. S

    enable/disabled http2

    hi I have disabled http2 in my listener like this listener Default { address *:80 secure 0 enableSpdy 0 } listener SSL { address *:443 secure 1 enableSpdy 0 } default...
  5. S

    enable/disable gzip compersion openlitespeed

    hi, how I can enable/disable gzip compersion in openlitespeed at the server level and vhost level?
  6. S

    Selectively enable HTTP/3, HTTP/2, and SPDY HTTP network protocols.

    hi i have set ALPN to none in my ssl listener so but my domain getting http/2 listener SSL { address *:443 secure 1 enableSpdy 0 } I want to set this config to my all SSL Vhost. is this possible or should I have to add this in all Vhost
  7. S

    How to enable/disable http2 in openlitespeed

    how I can enable/disable http2 and http3 in openlitespeed ?
  8. S

    How to Force HTTPS in Vhost

    hi I want to add force HTTPS redirect in vhost without using web admin because my web admin is open in read-only mode. is there any way to force HTTPS redirect like we do in apache Redirect permanent / https://domain.com/ I have added this in my vhost but it does not work rewrite {...
Top