Fred Dixon
Fred Dixon
We did a bit of googling and found this https://stackoverflow.com/questions/50840101/curl-35-error1408f10bssl-routinesssl3-get-recordwrong-version-number
> which I assume preserves all the necessary data. So, I believe that it should be possible to switch back to greenlight-v2 Right. You should be able to start/stop either...
Hi @dashohoxha, Thanks for your input (and thanks for the help on the project). Your right about using tags instead of naming conventions, especially about keeping the history. The `bbb-install.sh`...
Does Chrome work when you connect?
With your separate turn server, if you re-run the `bbb-install-2.6.sh` command with `-c :`, it will configure BigBlueButton your newly installed BigBlueButton 2.6-rc server to use that separate TURN server....
If you provide credentials to your own TURN server via `-c`, see https://github.com/bigbluebutton/bbb-install/blob/master/bbb-install-2.6.sh#L59 BigBlueButton will not install a local TURN server + HAProxy. We could extend it to `-c noturn:noturn`...
> So, there seems to be a little bug about this -> will investigate when having time. Thanks!
Thanks! Adding an explicit dependency for this https://github.com/bigbluebutton/bigbluebutton/pull/16643
Just testing this -- it seems that `${INTERNAL_IP:-$IP}` will only put the first `INTERNAL_IP`. ``` # cat test.sh #!/bin/bash INTERNAL_IP=1.1.1.1 IP=2.2.2.2 echo "listening-ip=${INTERNAL_IP:-$IP}" #./test.sh listening-ip=1.1.1.1 ```
Thanks!