From 80e7c1b6e250e65e2f269cb6178faa30e868cd1b Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Fri, 7 Nov 2025 19:35:56 -0700 Subject: [PATCH] Removed Legacy Cert Path for Vite Dev Server --- Borealis.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Borealis.ps1 b/Borealis.ps1 index e0daa517..884400ae 100644 --- a/Borealis.ps1 +++ b/Borealis.ps1 @@ -1299,8 +1299,7 @@ switch ($choice) { Push-Location $webUIDestinationAbsolute try { - $certRoot = Join-Path $scriptDir 'Certificates\Server' - Ensure-EngineTlsMaterial -PythonPath $venvPython -CertificateRoot $certRoot + Ensure-EngineTlsMaterial -PythonPath $venvPython $requiredTlsFiles = @($env:BOREALIS_TLS_CERT, $env:BOREALIS_TLS_KEY, $env:BOREALIS_TLS_BUNDLE) foreach ($tlsFile in $requiredTlsFiles) { if ([string]::IsNullOrWhiteSpace($tlsFile) -or -not (Test-Path $tlsFile)) {