From cbd2580736f175414a6df079155c7876ecc3e5cb Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 15 Apr 2024 11:46:23 +0200 Subject: [PATCH] Fix SSH command generation in remoteProcess.php --- bootstrap/helpers/remoteProcess.php | 1 - 1 file changed, 1 deletion(-) diff --git a/bootstrap/helpers/remoteProcess.php b/bootstrap/helpers/remoteProcess.php index 67bdb0bf9..3edc92ecc 100644 --- a/bootstrap/helpers/remoteProcess.php +++ b/bootstrap/helpers/remoteProcess.php @@ -140,7 +140,6 @@ function generateSshCommand(Server $server, string $command) if (config('coolify.mux_enabled') && config('coolify.is_windows_docker_desktop') == false) { $ssh_command .= "-o ControlMaster=auto -o ControlPersist={$muxPersistTime} -o ControlPath=/var/www/html/storage/app/ssh/mux/%h_%p_%r "; } - ray($ssh_command); if (data_get($server, 'settings.is_cloudflare_tunnel')) { $ssh_command .= '-o ProxyCommand="/usr/local/bin/cloudflared access ssh --hostname %h" '; }