Search results

  1. Cold-Egg

    How to Use fastapi with OLS

    For OLS as a reverse proxy, it won't take many resources, but I am not sure about the performance between Flask and fastapi+gunicorn, so no comment on it.
  2. Cold-Egg

    wordpress generated .htaccess doesn't work

    mmmm, then you might want to enable the rewrite log and check it from the error log, to see which rule has been matched.
  3. Cold-Egg

    wordpress generated .htaccess doesn't work

    Please try to copy the .htaccess file as a backup, then remove rules from "# BEGIN WP Rocket " to "# END WP Rocket ", restart lsws, and see if the webp starts loading.
  4. Cold-Egg

    Website is not obeying rewrite .htaccess data

    No problem, glad to help. :)
  5. Cold-Egg

    Cannot issue SSL. Error message: (2006, 'MySQL server has gone away')

    If you manually run the certbot renew for this domain, what's the output in SSH console?
  6. Cold-Egg

    Error message: Virtual Host Directory already exists. [404]

    may I know if there's any control panel on this server? Did you get this error from control panel or OpenLiteSpeed web admin?
  7. Cold-Egg

    Website is not obeying rewrite .htaccess data

    Try to replace RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteCond %{HTTPS} off RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] with RewriteCond %{HTTPS} off [OR] RewriteCond...
  8. Cold-Egg

    Website is not obeying rewrite .htaccess data

    So the site URL you want to use is litti.biz, not www.litti.biz. But the following rules mean, if the URL does not start from www, then redirect to www. ``` RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] ```
  9. Cold-Egg

    openlitespeed is functioning normally message

    @saiful iqmal Maybe you can send the issue to support@litespeedtech.com with this forum post link appended, we may help you directly from there and post the result here.
  10. Cold-Egg

    Installing openlitespeed on ubuntu 22.04

    Thanks to @danidoble and @scott0x , I have the wiki updated. :)
  11. Cold-Egg

    Error log not showing in webAdmin OLS

    I tried the same accesslog settings, and my site has logged correctly. Can you join litespeed community on Slack(https://litespeedtech.com/slack) and message me (@eric) from there, I can help you more quickly.
  12. Cold-Egg

    SSL on hostname

    I think you can just add these rules under the "modsecurity_rules `" , but I am not sure if those work with LiteSpeed or not, you need to test it.
  13. Cold-Egg

    Almalinux 8.6 failed to update ImageMagick-libs

    Our build master just finished packages for Ubuntu 22, will try to check/fix the imagick package on CentOS soon.
  14. Cold-Egg

    Installing openlitespeed on ubuntu 22.04

    By using the following method, it should cover the Ubuntu 22, may I know where you get enable_lst_debian_repo.sh? wget -O - https://repo.litespeed.sh | sudo bash More, https://docs.litespeedtech.com/lsws/extapp/php/getting_started/
  15. Cold-Egg

    How to Use fastapi with OLS

    It seems that you can include WSGI into Flask, Django, but I don't see any method to run fastapi on a WSGI server. https://fastapi.tiangolo.com/advanced/wsgi/ Maybe you need to rely on Gunicron, Uvicorn or xxicron, then set OpenLiteSpeed as a reverse proxy. More...
  16. Cold-Egg

    SSL on hostname

    Follow https://docs.openlitespeed.org/configuration to set up listener, virtual host, and SSL. Then you can go to web admin > SSL page to specify the SSL key & cert path.
  17. Cold-Egg

    Can't install lsphp80-pecl-imagick: nothing provides libMagickCore

    Just so you know that we have aware of this Imagick package error, and it's on our to do list.
  18. Cold-Egg

    Installing openlitespeed on ubuntu 22.04

    LiteSpeed repo including OpenLiteSpeed and PHP extensions now support on Ubuntu 22.04 Let us know if you see any issues.
  19. Cold-Egg

    Installing openlitespeed on ubuntu 22.04

    HI Just so you know our build master is still working on it. PHP with that version under 7.4 is end-of-life, so I guess 7.2 may not be considered.
  20. Cold-Egg

    LS reCaptcha Is Not Working

    Please submit the issue to support@litespeedtech.com with this forum post link appended, we can help to check from there.
Top