We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb59466 commit 00af520Copy full SHA for 00af520
install/lib/installer_base.lib.php
@@ -2076,6 +2076,11 @@ public function configure_apps_vhost() {
2076
// SSL in apps vhost is off by default. Might change later.
2077
$content = str_replace('{ssl_on}', 'off', $content);
2078
$content = str_replace('{ssl_comment}', '#', $content);
2079
+
2080
+ // Fix socket path on PHP 7 systems
2081
+ if(file_exists('/var/run/php/php7.0-fpm.sock')) {
2082
+ $content = str_replace('/var/run/php5-fpm.sock', '/var/run/php/php7.0-fpm.sock', $content);
2083
+ }
2084
2085
wf($vhost_conf_dir.'/apps.vhost', $content);
2086
0 commit comments