fix: static buildpack should set port 80

This commit is contained in:
Andras Bacsai 2024-01-10 10:58:31 +01:00
parent 225bf06736
commit 76f695036c

View File

@ -170,6 +170,10 @@ class General extends Component
$this->application->fqdn = null;
$this->application->settings->save();
}
if ($this->application->build_pack === 'static') {
$this->application->ports_exposes = $this->ports_exposes = 80;
$this->resetDefaultLabels(false);
}
$this->submit();
}
public function checkLabelUpdates()