Given the recent change of limiting calls to 5 minutes, I successfully self-hosted a jitsi instance on my own vps.
I have a React app hosted on another server. It integrates jitsi meet, using the jutsu framework.
This framework uses the public jitsi instance so the calls are limited to 5 minutes.
<body>
<script src='https://meet.jit.si/external_api.js'></script>
</body>
I couldn't figure out how to make it use my own self-hosted instance instead of the public one.
Any help or suggestion? Thanks!