Fixed incorrect caddy proxy config file path on ui
This commit is contained in:
parent
d81ed86920
commit
e193490b9f
1 changed files with 2 additions and 2 deletions
|
|
@ -43,9 +43,9 @@ public function mount()
|
||||||
$this->redirectUrl = data_get($this->server, 'proxy.redirect_url');
|
$this->redirectUrl = data_get($this->server, 'proxy.redirect_url');
|
||||||
}
|
}
|
||||||
|
|
||||||
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