Search results

  1. Cold-Egg

    Point Webadmin to subdomain

    Hi, I think you can create a new virtual host with the sub domain. Follow wikis to set valid SSL on web admin: https://forums.cyberpanel.net/discussion/1259/tutorial-how-to-secure-ols-lsws-webadmin-console-with-valid-ssl-certficate...
  2. Cold-Egg

    OpenLiteSpeed 1.4.46 looses SSL information every three months

    Hi @Webshaped.Biz , Could you run this command from ssh console and share the output here? grep certbot /etc/cron.d/certbot | grep -v '#' It will be better if you can also provide ols restart log from `/usr/local/lsws/logs/lsrestart.log` Best, Eric
  3. Cold-Egg

    how can i install memcached and redis server on ubuntu with openlitespeed server.

    Hi @Real_Time , Check https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:lsmcd:install-memcached#for_ubuntu_debian . Did you install memcached yet? Please check if service is running. Then go to lscache plugin to enable object cache...
  4. Cold-Egg

    how to set 2 self-signed SSL certificates for each virtual host?

    You can add certificate to virtual host level. Visit web admin -> Virtual Hossts -> SSL tab, specify your cert then do a graceful restart Best, Eric
  5. Cold-Egg

    Change Running As to www:data

    If you were installed from LiteSpeed repository. You can try 1. edit user & group from `/usr/local/lsws/conf/httpd_config.conf` 2. Remove rtreport, `rm -rf /tmp/lshttpd/.rtreport*` 3. then reinstall it by command `apt-get -y install --reinstall openlitespeed `
  6. Cold-Egg

    OLS in front of apache ( not working )

    No cache/cache hit on the page so not cache related. Will check if it's rewrite rule related.
  7. Cold-Egg

    Password protected directories with Realm and Context

    Could you also compare both permission of this file `conf/vhosts/wordpress/adm` on servers? Any entry inside of the file on ls12?
  8. Cold-Egg

    Force https ( redirection ) - web proxy

    If you just leave one line in rewrite tab, will it work? RewriteRule ^(.*)$ http://apachehttps/$1 [P,L] Please share all rules in rewrite tab and .htaccess file, thanks. Best, Eric
  9. Cold-Egg

    Overriding expire headers

    Hi, OpenLiteSpeed only support rewrite rules in .htaccess. To turn off the cache control, please access to OpenLiteSpeed web admin ->Server configuration -> General -> Expires Settings and change from there Best, Eric
  10. Cold-Egg

    Force https ( redirection ) - web proxy

    HI, Just ask, did you setup OLWS as a proxy success yet? You can put rewrite rules in .htaccess file if that is what you are asking? Best, Eric
  11. Cold-Egg

    Cache module issue causing wordpress too slow

    Hi, I can not visit your sites at this moment. From the screenshot you provided that means cache is not hit. You may want to check if there's any cachelookup in your .htaccess file. May I also know how did you setup your openlitespeed? e.g. from litespeed repo, or from cloud image. Best, Eric
  12. Cold-Egg

    Recommended configs for WordPress?

    Nice, thanks for sharing
  13. Cold-Egg

    Updating DigitalOcean cloud image install

    @CE_Mark , I can reproduce it locally, will inform the developer. Best, Eric
  14. Cold-Egg

    Recommended configs for WordPress?

    Hi, You should be able to find some information in more details here: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:config:mitigating-ddos-attacks https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:config:recaptcha Best, Eric
  15. Cold-Egg

    A redirect to https?

    Hi, Generally you may want to map this virtual host on both HTTP/HTTPS listener, then add a force HTTPS rewrite rules on the virtual host or .htaccess file. example rules: RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] Best, Eric
  16. Cold-Egg

    htpasswd problem

    Hi @nfn , Try updating your htpasswd file with 644 permission then update password and test login again. Submit issue to support@litespeedtech.com if issue still. Best, Eric
  17. Cold-Egg

    Error establishing a database connection

    Hi @mello555 , Also check syslog maybe helps if it happens again. Best
  18. Cold-Egg

    OpenLiteSpeed as Reverse Proxy [ https ]

    HIHI, You can set OpenLiteSpeed to use port 80/443 and Apache use other ports of course. What I mean in my test is that I failed to change Apache's default port number for some reason, so I changed OpenLitespeed port instead. And test result indicated that there's no 500 or other error when...
  19. Cold-Egg

    OpenLiteSpeed as Reverse Proxy [ https ]

    Hi, It seems works from my testing on my testing server. I failed to switch apache default port 80/443 so I will just keep it and change OpenLiteSpeed listener port to 81/444 instead. 1. Apache with port 80 curl -Ik http://www.ols-example.tk:80/ HTTP/1.1 301 Moved Permanently Date: Wed, 11 Dec...
Top