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
commit 83f9fd8e20
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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()