Till Brehm
2016-02-09 1347213f7d4cabf21c23c8d6d8557635b9b59f24
Fixed SSL issue in apps vhost.
2 files modified
10 ■■■■■ changed files
install/dist/lib/gentoo.lib.php 6 ●●●● patch | view | raw | blame | history
install/lib/installer_base.lib.php 4 ●●●● patch | view | raw | blame | history
install/dist/lib/gentoo.lib.php
@@ -774,7 +774,11 @@
            //$content = str_replace('{fpm_port}', ($conf['nginx']['php_fpm_start_port']+1), $content);
            $content = str_replace('{fpm_socket}', $fpm_socket, $content);
            $content = str_replace('{cgi_socket}', $cgi_socket, $content);
            // SSL in apps vhost is off by default. Might change later.
            $content = str_replace('{ssl_on}', 'off', $content);
            $content = str_replace('{ssl_comment}', '#', $content);
            wf($vhost_conf_dir.'/apps.vhost', $content);
            // PHP-FPM
install/lib/installer_base.lib.php
@@ -2075,6 +2075,10 @@
            }
            $content = str_replace('{use_tcp}', $use_tcp, $content);
            $content = str_replace('{use_socket}', $use_socket, $content);
            // SSL in apps vhost is off by default. Might change later.
            $content = str_replace('{ssl_on}', 'off', $content);
            $content = str_replace('{ssl_comment}', '#', $content);
            wf($vhost_conf_dir.'/apps.vhost', $content);