From 1f525ab7dbfbe20e3ba0519a22856bf5768a6229 Mon Sep 17 00:00:00 2001 From: Ninad Pundalik <20415588+ninadpundalik@users.noreply.github.com> Date: Wed, 19 Mar 2025 14:26:30 +0530 Subject: [PATCH] Allow configuring a project specific subdomain for TURN --- pkg/config/config.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/config/config.go b/pkg/config/config.go index f59cf6df4..4195f432f 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -197,6 +197,9 @@ type TURNConfig struct { RelayPortRangeStart uint16 `yaml:"relay_range_start,omitempty"` RelayPortRangeEnd uint16 `yaml:"relay_range_end,omitempty"` ExternalTLS bool `yaml:"external_tls,omitempty"` + + // Support project specific TURN domains + ProjectSubdomainTemplate string `yaml:"project_subdomain_template,omitempty"` } type NodeSelectorConfig struct {