added more fields and defaults
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user