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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue