Elixir Webrtc Rel Save

Standalone TURN/STUN server in Elixir

Project README

Rel

CI Deployment Package

TURN server in pure Elixir.

Aims to implement:

This project is in early stage of development and some of the features described in the RFCs might be missing. Expect breaking changes.

Supports authentication described in A REST API For Access To TURN Services.

Public deployment

If you're in need of TURN server for testing purposes, feel free to use this Rel public deployment at turn.elixir-webrtc.org.

In case of any irregularities or bugs, please open an issue with description of the problem. DO NOT use this deployment in production, as it's intended to be an aid in developement only.

To obtain a set of credentials, use the built-in credentials mechanism. It does not require any authentication, but the credentials must be refreshed after 3 hours if not used.

$ curl -X POST "https://turn.elixir-webrtc.org/?service=turn&username=johnsmith"
{"password":"l6hs9SzUgudFeb5XjrfCfOWKeOQ=","ttl":1728,"uris":["turn:167.235.241.140:3478?transport=udp"],"username":"1691574817:johnsmith"}⏎

Use the obtained credentials in e.g. WebRTC's RTCPeerConnection:

pc = new RTCPeerConnection({
  iceServers: [
    {
      credential: "l6hs9SzUgudFeb5XjrfCfOWKeOQ=",
      urls: "turn:167.235.241.140:3478?transport=udp", 
      username: "1691574817:johnsmith" 
    }
  ]
});

Installation and running

  1. From source
git clone https://github.com/elixir-webrtc/rel.git
cd rel
mix deps.get
mix run --no-halt
  1. In Docker
docker run --network=host ghcr.io/elixir-webrtc/rel:latest

Features and configuration

Rel exposes Prometheus metrics endpoint (by default http://127.0.0.1:9568/metrics).

Rel supports authentication described in A REST API For Access To TURN Services. By default available under http://127.0.0.1:4000/. Example request would be POST http://127.0.0.1:40000/?service=turn&username=johnsmith. Key query parameter currently is not supported.

Rel is configured via environment variables. All of the possible options are described in sample env file.

Open Source Agenda is not affiliated with "Elixir Webrtc Rel" Project. README Source: elixir-webrtc/rel
Stars
44
Open Issues
0
Last Commit
2 months ago
Repository
License

Open Source Agenda Badge

Open Source Agenda Rating