fix(ui): incorrect caddy proxy config file path on proxy page (#6722)

This commit is contained in:
Andras Bacsai
2025-11-28 10:24:01 +01:00
committed by GitHub

View File

@@ -90,9 +90,9 @@ class Proxy extends Component
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()