Skip to content

Commit

Permalink
Update PHPInstaller.php
Browse files Browse the repository at this point in the history
  • Loading branch information
bobicloudvision committed Dec 9, 2024
1 parent cec3b22 commit ffaab8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/app/Installers/Server/Applications/PHPInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public function install()
$commands[] = 'apt-get install -yq sudo';
$commands[] = 'add-apt-repository -y ppa:ondrej/php';
$commands[] = 'add-apt-repository -y ppa:ondrej/apache2';
$commands[] = 'apt-get update -yq';


$apacheCommands = [];
Expand Down Expand Up @@ -64,7 +65,7 @@ public function install()
$dependenciesListApache = [
'apache2',
'apache2-suexec-custom',
'libapache2-mod-ruid2'
'libapache2-mod-ruid2',
];

$dependenciesApache = implode(' ', $dependenciesListApache);
Expand Down

0 comments on commit ffaab8d

Please sign in to comment.