I saw in the Reclaim Hosting Jitsi instance that Etherpad is integrated within the application, how did you do that @timmmmyboy?
I built ours from an Ubuntu instance so it doesn’t readily mirror things as well, but now that the recording feature is supported out of the box I do want to switch to the standard marketplace installer. I’ll do that soon and work through the etherpad thing as well to see if I can get it working again. I remember it being somewhat non-trivial but who knows with the Docker setup used by the installer.
1 Like
Here are the commands to run in a web SSH console or terminal to add Etherpad support. You’ll want to first install Etherpad.
cd /root/docker-jitsi-meet/
-
nano .env
Edit this file to uncomment the following line replacing the URL with your Etherpad install
ETHERPAD_URL_BASE=https://etherpad.us.reclaim.cloud
rm ~/.jitsi-meet-cfg/web/config.js
docker-compose -f docker-compose.yml -f jibri.yml up -d --force-recreate
-
nano ~/.jitsi-meet-cfg/web/config.js
Edit this file to find the following line replacing the URL with your Etherpad install (keep the /p/ at the end)
etherpad_base: 'https://etherpad.us.reclaim.cloud/p/',
- Restart environment
You should now see the option in Jitsi meetings to open a shared document
1 Like
I did it this morning and it worked a treat. Thanks man!