# Start Nginx proxy server Write-Host "Starting Nginx proxy server..." -ForegroundColor Green cd "nginx-1.24.0" Start-Process -FilePath ".\nginx.exe" -WorkingDirectory (Get-Location) -NoNewWindow Write-Host "Nginx started successfully!" -ForegroundColor Green