From 4ae2a0f7071a793cb0ef54ecad888719ec788d26 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Wed, 28 Jul 2010 08:18:26 -0400 Subject: [PATCH] Implemented: FS#931 - Optional SSL for Web Interface --- install/install.php | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/install/install.php b/install/install.php index 88742ad..adf7db2 100644 --- a/install/install.php +++ b/install/install.php @@ -450,6 +450,10 @@ //** Customise the port ISPConfig runs on $conf['apache']['vhost_port'] = $inst->free_query('ISPConfig Port', '8080'); + if(strtolower($inst->simple_query('Enable SSL for the ISPConfig web interface',array('y','n'),'y')) == 'y') { + $inst->make_ispconfig_ssl_cert(); + } + $inst->install_ispconfig_interface = true; } else { -- Gitblit v1.9.1