Skip to content

Commit b74093a

Browse files
author
Thom
committed
Don't disable SSL for Apps vhost (nginx) by default (#6017)
1 parent 7889e5d commit b74093a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

install/lib/installer_base.lib.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2687,10 +2687,6 @@ public function configure_apps_vhost() {
26872687
$content = str_replace('{use_tcp}', $use_tcp, $content);
26882688
$content = str_replace('{use_socket}', $use_socket, $content);
26892689

2690-
// SSL in apps vhost is off by default. Might change later.
2691-
$content = str_replace('{ssl_on}', '', $content);
2692-
$content = str_replace('{ssl_comment}', '#', $content);
2693-
26942690
// Fix socket path on PHP 7 systems
26952691
if(file_exists('/var/run/php/php7.0-fpm.sock')) $content = str_replace('/var/run/php5-fpm.sock', '/var/run/php/php7.0-fpm.sock', $content);
26962692
if(file_exists('/var/run/php/php7.1-fpm.sock')) $content = str_replace('/var/run/php5-fpm.sock', '/var/run/php/php7.1-fpm.sock', $content);

0 commit comments

Comments
 (0)