add Crypt::createSelfSignedCertificate; bugfix display of no-ssl-ip in domain-add formfield

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-05-02 08:33:42 +02:00
parent 82ea54863d
commit 7b6d5f1642
2 changed files with 35 additions and 2 deletions

View File

@@ -197,10 +197,10 @@ return [
'label' => lng('admin.domain_sslenabled'),
'type' => 'checkbox',
'value' => '1',
'checked' => true
'checked' => !empty($ssl_ipsandports)
],
'no_ssl_available_info' => [
'visible' => !empty($ssl_ipsandports),
'visible' => empty($ssl_ipsandports),
'label' => 'SSL',
'type' => 'label',
'value' => lng('panel.nosslipsavailable')