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
Note: Latest Jitsi meet not solve using this method. so latest version use below method.
root@video:~# vi /etc/jitsi/meet/video.technologyrss.com-config.js
Then remove comment this line //disableDeepLinking: false, to disableDeepLinking: true,
disableDeepLinking: true,
Then fix mobile conference.
If you see any problem so please see my YouTube channel for more details. Please subscribe my channel for get more update.
- How To Install Zabbix Server 6.4 On AlmaLinux 8 Server - August 9, 2024
- How To Clear RAM Memory Cache Buffer Linux Server - February 29, 2024
- How To Install Apache Cloud Stack Management Server 4.17 On Ubuntu 22.04 - February 1, 2024
Leave a Comment