Now I want to share how to fix jitsi meet video conference using mobile browser. This is very important thing, at that time many user connected via mobile network. So video conference needed using mobile browser.
★ How To Install Zabbix 5.0 On Ubuntu 18.04
★ How To Configure Static IP address On Ubuntu 18.04
Step #01: Open index.html file from /usr/share/jitsi-meet/ location and edit using details.
Goto head section and see first </script> close tag then insert below code into index.html file.
<script>
Object.defineProperty(window.navigator, ‘userAgent’, {
get: function () { return ‘Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/80.0.3987.163 Chrome/80.0.3987.163 Safari/537.36’; }
});
</script>
<script src=“https://video.technologyrss.com/external_api.js”></script>
<script>
var domain = “video.technologyrss.com”;
var options = {
roomName: “JitsiMeetAPIExample1221121212″,
width: 400,
height: 500,
parentNode: undefined,
configOverwrite: {},
interfaceConfigOverwrite: {
filmStripOnly: true
}
}
var api = new JitsiMeetExternalAPI(domain, options);
</script>
Just replace video.technologyrss.com your server address then save it.
Now restart jitis service using this command.
root@video:~# service jitsi-videobridge2 restart
If you see any problem so please see my YouTube channel for more details. Please subscribe my channel for get more update.
- How To Enable SSH On Debian 13 Server - September 13, 2025
- Is Debian 13 Server on VirtualBox the EASIEST Way to Get Started - September 11, 2025
- How To Install Zabbix Server 7.4 On Ubuntu 22.04 - September 10, 2025
Leave a Comment