Fixed incorrect proxy config file path on ui

This commit is contained in:
ShadowArcanist
2025-09-21 20:20:32 +05:30
parent b64de1b5cd
commit eab9f91879
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ class Proxy extends Component
public function getConfigurationFilePathProperty()
{
return $this->server->proxyPath().'/docker-compose.yml';
return $this->server->proxyPath().'docker-compose.yml';
}
public function changeProxy()

View File

@@ -56,7 +56,7 @@
<div class="flex flex-col gap-2 pt-4">
<x-forms.textarea canGate="update" :canResource="$server" useMonacoEditor
monacoEditorLanguage="yaml"
label="Configuration file ({{ $this->configurationFilePath }})" name="proxySettings"
label="Configuration file ( {{ $this->configurationFilePath }} )" name="proxySettings"
id="proxySettings" rows="30" />
@can('update', $server)
<x-modal-confirmation title="Reset Proxy Configuration?"