Mojolicious Lite websockets over TLS #1751
-
Hi there and what great software Mojo is. I have a simple app which looks like: ` get '*' => sub { However, it only works with ws: and does not work with wss:// I would like both ws: and wss: to be processed by the process_websocket routine. I do proxy https requests using APACHE, I wonder if this could be the issue.... Thanks for any help, Mark |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
mod_proxy_wstunnel is required to proxy websockets through Apache: https://docs.mojolicious.org/Mojolicious/Guides/Cookbook#Apache-mod_proxy Also |
Beta Was this translation helpful? Give feedback.
mod_proxy_wstunnel is required to proxy websockets through Apache: https://docs.mojolicious.org/Mojolicious/Guides/Cookbook#Apache-mod_proxy
Also
get '*'
is wrong, should beget '/*'