added more fields and defaults

This commit is contained in:
envoyr
2022-05-01 18:27:00 +02:00
parent fb8143991c
commit 82ea54863d
3 changed files with 17 additions and 4 deletions

View File

@@ -121,6 +121,7 @@ return [
'distribution' => [
'label' => lng('distribution'),
'type' => 'select',
'mandatory' => true,
'select_var' => $this->supportedOS,
],
'serverip' => [
@@ -139,7 +140,7 @@ return [
'label' => lng('use_ssl'),
'type' => 'checkbox',
'value' => '1',
'checked' => old('use_ssl', '0', 'installation'),
'checked' => old('use_ssl', '1', 'installation'),
],
'webserver' => [
'label' => lng('webserver'),
@@ -147,6 +148,12 @@ return [
'mandatory' => true,
'value' => old('webserver', 'apache24', 'installation'),
],
'webserver_backend' => [
'label' => lng('webserver_backend'),
'type' => 'select',
'mandatory' => true,
'select_var' => $this->webserverBackend,
],
'httpuser' => [
'label' => lng('httpuser'),
'type' => 'text',