HI,
I have installed jitsi-videobridge in my docker.
FROM ubuntu:20.04
# Install required packages
RUN apt-get update \
&& apt-get install -y gnupg2 curl \
&& curl https://download.jitsi.org/jitsi-key.gpg.key | apt-key add - \
&& echo 'deb https://download.jitsi.org stable/' > /etc/apt/sources.list.d/jitsi-stable.list \
&& apt-get update \
&& apt-get install -y jitsi-videobridge2
# Expose ports
EXPOSE 10000/udp
EXPOSE 4443/tcp
CMD ["/usr/share/jitsi-videobridge/jvb.sh", "--host=localhost", "--domain=example.com", "--port=5347", "--secret=mysecret", "--apis=xmpp,rest"]
Now i need to setup my own web app using NodeJS and React js which will use jitsi-videobridge as my SFU server.
Is it possible ? Please direct me to the correct documentation.
I don’t need the Iframe based meeting.