From e193490b9ffd96a90ed85add5ab62340889ee1e9 Mon Sep 17 00:00:00 2001 From: ShadowArcanist Date: Mon, 29 Sep 2025 05:26:02 +0530 Subject: [PATCH] Fixed incorrect caddy proxy config file path on ui --- app/Livewire/Server/Proxy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Livewire/Server/Proxy.php b/app/Livewire/Server/Proxy.php index 5ef559862..9b345181c 100644 --- a/app/Livewire/Server/Proxy.php +++ b/app/Livewire/Server/Proxy.php @@ -43,9 +43,9 @@ public function mount() $this->redirectUrl = data_get($this->server, 'proxy.redirect_url'); } - public function getConfigurationFilePathProperty() + public function getConfigurationFilePathProperty(): string { - return $this->server->proxyPath().'docker-compose.yml'; + return rtrim($this->server->proxyPath(), '/') . '/docker-compose.yml'; } public function changeProxy()