Hello,
I’ve installed icescrum version 7.0.06 Pro with docker.
For security i’ve placed a SSL proxy (apache 2.4).
My apache configuration is the following :
<VirtualHost *:443>
ServerName my-fqdn.com
ServerAdmin webmaster@localhost
SSLEngine on
SSLCertificateFile /…/fullchain.pem
SSLCertificateKeyFile /…/privkey.pem
SSLCertificateChainFile /…/fullchain.pem
ProxyRequests Off
ProxyPreserveHost On
ProxyStatus On
Header edit Location ^http://my-fqdn.com/ https://my-fqdn.com/
Header edit Location ^ws://my-fqdn.com/ wss://my-fqdn.com/
ProxyPass “/” “http://localhost:8080/”
ProxyPassReverse “/” “http://localhost:8080/”
</VirtualHost>
The problem is that the first page load correctly with HTTPS but the websocket that is started just after try to open ws://my-fqdn.com/stream/app?X-Atmosphere-tr...
What can i do to force the websocket to start as wss
?