I have a websocket server hostet with Spring Boot Websockets. Safari, Chrome and Edge can connect, but Firefox can't. Error:
Firefox kann keine Verbindung zu dem Server unter wss://MY_DOMAIN/growth-websocket/933/omw002tp/websocket aufbauen.
(= "Firefox can't establish a connection to the server at wss://...")
I am proxying the WebSockets with Apache:
RewriteEngine on
RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC]
RewriteCond %{HTTP:CONNECTION} ^Upgrade$ [NC]
RewriteRule .* ws://localhost:4567%{REQUEST_URI} [P]
Thanks for your help!