You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The server receives the following flags through the command line:
--http.port (Optional)
Specifies the port where the HTTP server should listen, by default the port 9000 is used.
--stun.server (Optional)
Allows to speficy a different STUN server, by default a Google STUN server is used.
Chrome 74+, Firefox 66+, Safari 12.x are supported. Older versions (within reason) should be supported as well but YMMV.
Building the server
Build the deployment package by runnning make. This should create a tar file with the
binary and web directory, by default only support for h264 is included, if you want to use VP8 run make encoders=vp8, if you want both then make encoders=vp8,h264.
Copy the archive to a remote server, decompress it and run ./agent. The agent application assumes the web dir. is in the same directory.
WebRTC requires a secure domain to work, the recommended approach towards this is to forward the agent port thru SSH tunneling:
ssh -L YOUR_LOCAL_PORT:localhost:9000
Then access the application on https://localhost:YOUR_LOCAL_PORT, localhost should be considered
secure by modern browsers.