feat: add coturn changes

This commit is contained in:
Abhishek Kumar 2026-02-02 20:32:37 +05:30
parent 7e438ad049
commit fde2940e53
11 changed files with 421 additions and 63 deletions

View file

@ -102,3 +102,10 @@ DEFAULT_CAMPAIGN_RETRY_CONFIG = {
"retry_on_no_answer": True,
"retry_on_voicemail": False,
}
TURN_SECRET = os.getenv("TURN_SECRET")
TURN_HOST = os.getenv("TURN_HOST", "localhost")
TURN_PORT = int(os.getenv("TURN_PORT", "3478"))
TURN_TLS_PORT = int(os.getenv("TURN_TLS_PORT", "5349"))
TURN_CREDENTIAL_TTL = int(os.getenv("TURN_CREDENTIAL_TTL", "86400"))