Search results

  1. G

    ssl mixed content error

    I believe so. The LS server has to process the .htaccess and it's not efficient to do it on every page load. Additionally most rules added by plugins won't be compatible with OpenLiteSpeed as it only supports a subset of the Apache htaccess syntax.
  2. G

    openlitespeed vhost

    Thank you for clarifying that it's not available for OLS.
  3. G

    openlitespeed vhost

    Thanks for the reply. I've figured out I could use encrypted websockets between the client and OLS, and then unencrypted websockets between OLS and my backend server, so all is well (having a certificate issue with webhooks but I can figure it out). I had read a reference to a "Port Offset" (a...
  4. G

    ssl mixed content error

    You need to find out what http content is getting loaded. Some of it may be from your website, some could be from a different domain. If you look at the page source code, you may be able to find it by searching for 'http://'. Then you will need to figure out if your rewrite rules are not...
  5. G

    Feature request: Reverse proxy support for encrypted websockets

    Here is where the note above appears: https://docs.litespeedtech.com/cp/cpanel/websocket-proxy/
  6. G

    Feature request: Reverse proxy support for encrypted websockets

    Just re-read the LiteSpeed server documentation: and indeed I misunderstood. It would be great if this little note is added to the OLS wiki pages related to reverse proxying (assuming the same is indeed true for OLS).
  7. G

    Feature request: Reverse proxy support for encrypted websockets

    Or maybe I am misunderstanding and I can have an encrypted websocket connection between the client and OLS, and an unencrypted websocket connection between OLS and the backend server? It seems unlikely but I could be mistaken. I'm a newbie at reverse proxying.
  8. G

    Feature request: Reverse proxy support for encrypted websockets

    Noting that documentation and wiki pages are misleading because they do not mention this lack of support. There is a tiny note on the LiteSpeed Enterprise Server documentation somewhere. OLS features page (https://openlitespeed.org/openlitespeed-features/) says: As Proxy WebSocket proxy...
  9. G

    Feature request: Reverse proxy support for encrypted websockets

    Websites and apps use important data use SSL nowadays. A lot of apps use websockets for real-time communication with their backend. An https app cannot use unencrypted websockets, as it would be unsafe and most modern browsers do not allow it. A fair number of people run their apps behind...
  10. G

    openlitespeed vhost

    Chiming in on this thread from the past. I am trying to use OLS as a reverse proxy for a nodejs app. The app uses https and encrypted websockets but OLS only supports unencrypted websockets. I am thinking of running a separate reverse proxy (maybe Nginx) to be able to handle the encrypted...
  11. G

    Bug in server log viewer

    Filed on github as: https://github.com/litespeedtech/openlitespeed/issues/197
  12. G

    Bug in server log viewer

    @Cold-Egg: I would like to get your take on this (what I think is a) bug. Thanks :)
  13. G

    How to generate correct LOG?

    Figured it out. You can change the log format on the log tab. Make sure to check Referrer/User Agent/Host or provide a log format such as: "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\" You can find other options by clicking on the log format help bubble. Then restart lsws from...
  14. G

    Security PSA: Implement Urlhaus as a response policy zone (rpz) for bind

    If you're running your own server, I would recommend to install to implement urlhaus as a response policy zone (rpz) for bind. How-to guide in this article: https://abuse.ch/blog/using-urlhaus-as-response-policy-zone-rpz/ You may need to specify an absolute path the urlhaus.zone zone for the...
  15. G

    Suspend/resume virtual host in webadmin console does not work without manual lsws restart

    FYI I posted in another thread that there is a bug in the code related to displaying the log from the end of the file.
  16. G

    Server log viewer should have ordering enabled and should default to descending by time

    Here is how to make those changes: admin/html.open/view/logviewer.php: $("#dash_logtbl").dataTable( {"ordering": true, // change to true to enable ordering "order"...
  17. G

    Bug in server log viewer

    Removing the faulty if statement fix the server log viewer both on the dashboard and on the server viewer page.
  18. G

    Bug in server log viewer

    There seems to be a bug in the server log viewer. The SetRange function in admin/html.open/lib/LogViewer.php prevents $from from being set to -1, which is POS_FILEEND ie the end of the file. Therefore the |> button does not really work. function SetRange($from, $size) { if...
  19. G

    Suggestion: New version available post should have link to how to upgrade article

    It would be useful for everything if forum/website posts about new versions available contained a link to the post about how to upgrade (maybe this one: https://openlitespeed.org/kb/how-to-upgrade-openlitespeed/)
  20. G

    Suspend/resume virtual host in webadmin console does not work without manual lsws restart

    Ah I figured it out, need to click on the >| button. This interface needs a UX/UI designer.
Top