Removed Coturn TURN Server Code

This commit is contained in:
Nicole Rappe 2025-05-20 03:36:13 -06:00
parent abe4e84f6c
commit aa1d12b3e3

View File

@ -208,21 +208,6 @@ Run-Step "Dependency: Tesseract-OCR - Trained Model Data" {
} }
} }
# ---------------------- Ensure Coturn TURN Server Binaries are Downloaded ----------------------
Run-Step "Dependency: Coturn WebRTC TURN Server" {
$coturnDir = "Dependencies\Coturn_TURN_Server"
$coturnExe = "$coturnDir\coturn.exe"
$confPath = "Data\Server\WebRTC\WebRTC_TURNServer.conf"
If (!(Test-Path $coturnDir)) { New-Item -ItemType Directory -Force -Path $coturnDir }
If (!(Test-Path $coturnExe)) {
Write-Host "Downloading Coturn TURN server binary..."
# Use latest or a fixed version, e.g., from GitHub or your own mirror:
# Replace with a real direct URL to a Windows build.
$url = "https://github.com/coturn/coturn/releases/download/4.5.3/turnserver.exe"
Invoke-WebRequest -Uri $url -OutFile $coturnExe
}
Write-Host "Coturn TURN Server is ready."
}
# ---------------------- Common Initialization & Visuals ---------------------- # ---------------------- Common Initialization & Visuals ----------------------
Clear-Host Clear-Host