Search results

  1. Cold-Egg

    Rimuovere la schermata di congratulazioni e caricare il mio sito

    Good to know it displays now. For the second question, please check this guide https://docs.litespeedtech.com/cloud/images/django/#how-do-i-restart-the-python-process
  2. Cold-Egg

    Not able to restart node.js service from Jenkins

    It means no node process is running. Do you use any CDN with cache enabled?
  3. Cold-Egg

    Rimuovere la schermata di congratulazioni e caricare il mio sito

    HI, LiteSpeed repo does not support 23.04, not sure how you install it. That message may be due to you did not config the OpenLiteSpeed Listener or VH mapping. More https://docs.openlitespeed.org/configuration#set-up-listeners If you have Ubuntu 22.04, please try the script method which...
  4. Cold-Egg

    Not able to restart node.js service from Jenkins

    After kill the process, what's the output from this command, "ps -aux | grep -i node"
  5. Cold-Egg

    Example QUIC conf and Port change

    Feel free to check examples on https://openlitespeed.org/kb/ols-configuration-examples/
  6. Cold-Egg

    Connection idle time too long

    Please try to upgrade OLS to version v1.7.18, then empty the Memory Soft Limit (bytes), Memory Hard Limit (bytes), Process Soft Limit, and Process Hard Limit value from the web admin > External App > PHP version you are using. Then test it again and let us know if it works.
  7. Cold-Egg

    where to paste php code to apply for all sites?

    You can try to add the following rule into the web admin> VH > General > php.ini Override php_value auto_prepend_file script.php Or add it to the php.ini so it will apply globally.
  8. Cold-Egg

    Example QUIC conf and Port change

    If you open an HTTPS port with a valid Certificate applied, then HTTP3/QUIC should work on that listener.
  9. Cold-Egg

    Help getting Plausible Analytics to run /w Openlitespeed - possibly reverse proxy related?

    The rewriterule method should be good enough, no need to add a context. If you want to respond HTTPS only, then the current rules are incorrect, please use the following example only: RewriteRule ^(.*)$ HTTPS://Plaxxxxx/$1 [P,L,E=PROXY-HOST:xxxxxxx] If is still not working, please submit a...
  10. Cold-Egg

    Example QUIC conf and Port change

    QUIC is bound with the HTTPS listener, you could just edit the listener, and no need to config QUIC.
  11. Cold-Egg

    Example QUIC conf and Port change

    The file location is correct.
  12. Cold-Egg

    In which directory are cache files stored?

    For OLS, cache files are stored under the /usr/local/lsws/cachedata folder. Check https://openlitespeed.org/kb/openlitespeed-cache-module/ if you want to customize the cache folder. It's not recommended to public cache globally and blindly. If this CMS has no cache plugin supported, then it's...
  13. Cold-Egg

    Example QUIC conf and Port change

    If you aren't sure of the syntax, please try to edit it via OpenLiteSpeed Web Admin, then you will see the correct syntax in the conf file. For example, "map test1.domain.com test1.domain.com" does not map to any virtual host name which is incorrect. Please check...
  14. Cold-Egg

    Help getting Plausible Analytics to run /w Openlitespeed - possibly reverse proxy related?

    Hi, I assume Plausible is running ok, and it's listening on a specific port number. If you want to set reverse proxy on OLS, please check this guide https://docs.openlitespeed.org/docs/advanced/proxy
  15. Cold-Egg

    grafana with litespeed (cyberpanel) not working

    Then it means some service is occupied at that port. Good to know it works.
  16. Cold-Egg

    Why Root index.html file not loading to server IP address? Always show 404 Not Found

    I saw you have another post that is using CyberPanel. For the control panel case, you might want to create a website from the panel. This example virtual host is just a default one from OLS. If no domain mapping to this virtual host, you will always get a 404.
  17. Cold-Egg

    grafana with litespeed (cyberpanel) not working

    I am not sure about that service. Can you try to run Grafana on another port, e.g. 3001? And make sure it works locally with curl command? Then you can set up reverse proxy from the OLS to the Grafana service. For more reverse proxy, please check...
  18. Cold-Egg

    How to redirect 404 page using .htaccess to somewhere?

    I did not test it, but you should be able to use this example. Please replace the SOMEWHERE with your target. RewriteRule ^404$ https://SOMEWHERE/ [L] Note, remember to restart OLS once you updated the .htaccess.
Top