diff --git a/app/Livewire/Server/Proxy.php b/app/Livewire/Server/Proxy.php index c92f73f17..49d872210 100644 --- a/app/Livewire/Server/Proxy.php +++ b/app/Livewire/Server/Proxy.php @@ -90,9 +90,9 @@ protected function getTraefikVersions(): ?array return is_array($traefikVersions) ? $traefikVersions : null; } - 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()