Skip to content

Commit c028f1b

Browse files
author
A. Täffner
committed
check if wanted before configuration the apps vHost
1 parent 9b91d5a commit c028f1b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

install/update.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,11 @@
428428
$inst->configure_nginx();
429429
}
430430

431-
//** Configure apps vhost
432-
swriteln('Configuring Apps vhost');
433-
$inst->configure_apps_vhost();
431+
if ($conf['web']['apps_vhost_enabled'] == 'y') {
432+
//** Configure apps vhost
433+
swriteln('Configuring Apps vhost');
434+
$inst->configure_apps_vhost();
435+
} else swriteln('Skipping config of Apps vhost');
434436
}
435437

436438
//* Configure Jailkit

0 commit comments

Comments
 (0)