fix: update livekit endpoints and add TURN server configuration
This commit is contained in:
parent
eee6905637
commit
7d55e4e40a
5 changed files with 88 additions and 11 deletions
|
|
@ -7,7 +7,7 @@ in
|
|||
type = "proxy";
|
||||
listenPort = 443;
|
||||
domain = cfg.domain;
|
||||
endpoint = "/livekit/jwt/";
|
||||
endpoint = "/sfu/get";
|
||||
force_ssl = true;
|
||||
content = {
|
||||
host = "127.0.0.1";
|
||||
|
|
@ -18,7 +18,29 @@ in
|
|||
type = "proxy";
|
||||
listenPort = 443;
|
||||
domain = cfg.domain;
|
||||
endpoint = "/livekit/sfu/";
|
||||
endpoint = "/healthz";
|
||||
force_ssl = true;
|
||||
content = {
|
||||
host = "127.0.0.1";
|
||||
port = cfg.jwt_port;
|
||||
};
|
||||
}
|
||||
{
|
||||
type = "proxy";
|
||||
listenPort = 443;
|
||||
domain = cfg.domain;
|
||||
endpoint = "/get_token";
|
||||
force_ssl = true;
|
||||
content = {
|
||||
host = "127.0.0.1";
|
||||
port = cfg.jwt_port;
|
||||
};
|
||||
}
|
||||
{
|
||||
type = "proxy";
|
||||
listenPort = 443;
|
||||
domain = cfg.domain;
|
||||
endpoint = "/";
|
||||
force_ssl = true;
|
||||
content = {
|
||||
host = "127.0.0.1";
|
||||
|
|
|
|||
|
|
@ -8,6 +8,15 @@ let
|
|||
domain = "vikunja.nudelerde.de";
|
||||
tls = true;
|
||||
}
|
||||
{
|
||||
port = 80;
|
||||
domain = "wekan.nudelerde.de";
|
||||
}
|
||||
{
|
||||
port = 443;
|
||||
domain = "wekan.nudelerde.de";
|
||||
tls = true;
|
||||
}
|
||||
{
|
||||
port = 80;
|
||||
domain = "nudelerde.de";
|
||||
|
|
|
|||
|
|
@ -15,5 +15,9 @@
|
|||
trusted_homeservers = [ "nudelerde.de" ];
|
||||
rtc_port_range_start = 50000;
|
||||
rtc_port_range_end = 51000;
|
||||
turn_port = 3478;
|
||||
turn_tls_port = 5349;
|
||||
turn_relay_range_start = 50300;
|
||||
turn_relay_range_end = 50400;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue