From eab9f9187968aaeb862568f7d9e9db030ae93581 Mon Sep 17 00:00:00 2001 From: ShadowArcanist Date: Sun, 21 Sep 2025 20:20:32 +0530 Subject: [PATCH] Fixed incorrect proxy config file path on ui --- app/Livewire/Server/Proxy.php | 2 +- resources/views/livewire/server/proxy.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Livewire/Server/Proxy.php b/app/Livewire/Server/Proxy.php index 6ccca644a..5ef559862 100644 --- a/app/Livewire/Server/Proxy.php +++ b/app/Livewire/Server/Proxy.php @@ -45,7 +45,7 @@ class Proxy extends Component public function getConfigurationFilePathProperty() { - return $this->server->proxyPath().'/docker-compose.yml'; + return $this->server->proxyPath().'docker-compose.yml'; } public function changeProxy() diff --git a/resources/views/livewire/server/proxy.blade.php b/resources/views/livewire/server/proxy.blade.php index db2fd2827..256f43e76 100644 --- a/resources/views/livewire/server/proxy.blade.php +++ b/resources/views/livewire/server/proxy.blade.php @@ -56,7 +56,7 @@
@can('update', $server)