Fixed incorrect proxy config file path on ui
This commit is contained in:
parent
b64de1b5cd
commit
eab9f91879
2 changed files with 2 additions and 2 deletions
|
|
@ -45,7 +45,7 @@ public function mount()
|
||||||
|
|
||||||
public function getConfigurationFilePathProperty()
|
public function getConfigurationFilePathProperty()
|
||||||
{
|
{
|
||||||
return $this->server->proxyPath().'/docker-compose.yml';
|
return $this->server->proxyPath().'docker-compose.yml';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function changeProxy()
|
public function changeProxy()
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@
|
||||||
<div class="flex flex-col gap-2 pt-4">
|
<div class="flex flex-col gap-2 pt-4">
|
||||||
<x-forms.textarea canGate="update" :canResource="$server" useMonacoEditor
|
<x-forms.textarea canGate="update" :canResource="$server" useMonacoEditor
|
||||||
monacoEditorLanguage="yaml"
|
monacoEditorLanguage="yaml"
|
||||||
label="Configuration file ({{ $this->configurationFilePath }})" name="proxySettings"
|
label="Configuration file ( {{ $this->configurationFilePath }} )" name="proxySettings"
|
||||||
id="proxySettings" rows="30" />
|
id="proxySettings" rows="30" />
|
||||||
@can('update', $server)
|
@can('update', $server)
|
||||||
<x-modal-confirmation title="Reset Proxy Configuration?"
|
<x-modal-confirmation title="Reset Proxy Configuration?"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue