Skip to content

Commit 794b7c2

Browse files
committed
Update install.php to support creating and extending LE SSL certs on ISPConfig non-webservers
1 parent 5251944 commit 794b7c2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

install/install.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,13 @@
597597
$inst->install_ispconfig_interface = false;
598598
}
599599

600+
// Create SSL certs for non-webserver(s)?
601+
if(($conf['apache']['installed'] && $conf['apache']['installed']) == false) {
602+
if(strtolower($inst->simple_query('Do you want to create SSL certs for your server?', array('y', 'n'), 'y')) == 'y') {
603+
$inst->make_ispconfig_ssl_cert();
604+
}
605+
}
606+
600607
$inst->install_ispconfig();
601608

602609
//* Configure DBServer

0 commit comments

Comments
 (0)