bbbatscale
For load balancing we run bbbatscale at pro.fairteaching.net
Webhooks need to be added before adding a server.
clean up database
Before version 2.8 we had some issues with room names. Cleaning up should not be necessary in the future. Overall just connect to the pyshell inside the docker:
python3 manage.py shell
from core.models import Room
Room.objects.filter(is_public=False).delete()
Careful since we don't know which are created via Scale and which via API/Script that was the only way to "reset" the db, now all external created rooms are properly deleted with webhooks and house_keeping.