fix(ui): incorrect caddy proxy config file path on proxy page (#6722)
This commit is contained in:
commit
83f9fd8e20
1 changed files with 2 additions and 2 deletions
|
|
@ -90,9 +90,9 @@ protected function getTraefikVersions(): ?array
|
||||||
return is_array($traefikVersions) ? $traefikVersions : null;
|
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()
|
public function changeProxy()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue