fix: save proxy configuration

This commit is contained in:
Andras Bacsai
2023-09-21 11:03:52 +02:00
parent b4d69a22df
commit 301469de6b
3 changed files with 5 additions and 10 deletions

View File

@@ -47,7 +47,7 @@ class Proxy extends Component
public function submit()
{
try {
SaveConfiguration::run($this->server);
SaveConfiguration::run($this->server, $this->proxy_settings);
$this->server->proxy->redirect_url = $this->redirect_url;
$this->server->save();

View File

@@ -20,13 +20,6 @@ class Deploy extends Component
public function startProxy()
{
try {
if (
$this->server->proxy->last_applied_settings &&
$this->server->proxy->last_saved_settings !== $this->server->proxy->last_applied_settings
) {
SaveConfiguration::run($this->server);
}
$activity = StartProxy::run($this->server);
$this->emit('newMonitorActivity', $activity->id);
} catch (\Throwable $e) {