Search results

  1. R

    Prebuilded image, is it worth it?

    Hey, I have a bit of experience with this. The answer will be on how confident you are building from scratch. The one's built by Litespeed are excellent, lean and fast. I find Cyberpanel add's too much overhead and for a big WooCommerce site, you want to go Openlitespeed directly without...
  2. R

    Wordpress Wordfence .user.ini / auto_append_file

    hey, I use OLS directly without cyberpanel - try: php_value auto_prepend_file "/usr/local/lsws/www/wordpress/wordfence-waf.php". make sure you're directory is right tho.
  3. R

    Speed optimisation / LSCache

    Hi there, I am using Openlitespeed 1.5.4 / LSCache / Cloudflare CDN / Wordpress on over powered ubuntu server. Over all I am getting excellent performance. I am wondering tho, why after the last asset is loaded from my web server why there is such a big gap when loading the deferred items like...
  4. R

    wont bind to port 80 or 443

    @Cold-Egg do you have a guide handy on how to use OLS to do this rather than PM2 ?
  5. R

    Performance difference for OLS using difference linux distro's?

    Hi All, Has anyone had experience with OLS across different Linux distro's - for example does using Cento 7 or Ubuntu result in faster page loads ? Maybe because the distro is lighter, better tuned or what ever the reason might be? Im interested in loading dynamic PHP based pages as fast...
  6. R

    Redirect whole domain except 1 directory

    This syntax seems to work best with OLS: RewriteCond %{REQUEST_URI} ^!\.well-known/
  7. R

    Redirect whole domain except 1 directory

    Its to do with the . in the directory name ! I can get it to work with !/well-known/ but not !/.well-known/
  8. R

    Wordpress Wordfence .user.ini / auto_append_file

    fixed. I was using append instead of prepend when putting in php.ini: auto_prepend_file = "/usr/local/lsws/www/wordpress/wordfence-waf.php"
  9. R

    Redirect whole domain except 1 directory

    Thanks for the suggestion, I combined the HTTPS and WWW that worked nice, but moving RewriteCond %{REQUEST_URI} !/.well-known/ up didn't work. I also tried RewriteCond %{REQUEST_URI} ^!/.well-known/ as well.
  10. R

    Wordpress Wordfence .user.ini / auto_append_file

    Hi All, I use wordfence to protect my wordpress site. One of the functions is It checks the code before executing it. It does this by appending a file called .user.ini. In litespeed enterprise it just picks up the .user.ini file and wordfence works. in OLS it didnt pick the file up so i put...
  11. R

    Redirect whole domain except 1 directory

    Hi all, I am trying to redirect a whole domain except 1 directory - this is the code i have: RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] RewriteCond %{HTTPS} off RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI}...
  12. R

    wont bind to port 80 or 443

    Thanks Kevin, got it to work - there was something else on the port - the logs helped
  13. R

    wont bind to port 80 or 443

    Hi all, Just wondering if anyone knows how to solve this: I have a node.js app running using pm2 to keep alive and i want to use openlitespeed to reverse proxy. But i cant get openlitespeed to work on a port below 1024 - it just wont work - even though its open in the firewall. port 8080...
  14. R

    Too many open files

    hi all, I am randomly getting an error that my port 80 listener "can't accept: too many open files" Anyone seen this before or have an idea on how to fix it ? Ps I can never seem to be able to upload images (server error) on this forum
  15. R

    Openlitespeed Cache Module

    Last question, should opcache be turned off when using litespeed cache module ?
  16. R

    Openlitespeed Cache Module

    Thank you for help Kevin; There is a setting called "IS INTERNAL" when i chose yes and it worked!
  17. R

    help with rewrite

    Im not sure if i am doing the right thing; some background: I am using an extension in magento for amazon cloudfront (content delivery network) The extension change's the image url from...
  18. R

    Openlitespeed Cache Module

    Hi Kevin, that didnt seem to help from what i can see;
  19. R

    Openlitespeed Cache Module

    Hi All, I am running OLS 1.3.1 which has the "cache.so" module pre built; I followed the follow: http://open.litespeedtech.com/mediawiki/index.php/Help:Modules:Cache I then set the settings to: enableCache 1 qsCache 1 reqCookieCache 1 respCookieCache 1 ignoreReqCacheCtrl 0...
  20. R

    help with rewrite

    Thanks for your help Kevin; The only thing i can see relevant in the log was: 2015-05-13 06:15:45.819 [INFO] [216.158.88.67:50910] [REWRITE] Rule: Match '/' with pattern '/cdn/([0-9]{1,6})/(.*)$', result: -1
Top