mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-25 09:00:27 +00:00
Update PHPInstaller.php
This commit is contained in:
parent
bc66f795e8
commit
90dabbb31f
1 changed files with 17 additions and 17 deletions
|
@ -56,29 +56,29 @@ class PHPInstaller
|
||||||
$lastItem = end($this->phpVersions);
|
$lastItem = end($this->phpVersions);
|
||||||
foreach ($this->phpVersions as $phpVersion) {
|
foreach ($this->phpVersions as $phpVersion) {
|
||||||
if ($phpVersion == $lastItem) {
|
if ($phpVersion == $lastItem) {
|
||||||
$commands[] = 'sudo a2enmod php' . $phpVersion;
|
$commands[] = 'a2enmod php' . $phpVersion;
|
||||||
} else {
|
} else {
|
||||||
$commands[] = 'sudo a2dismod php' . $phpVersion;
|
$commands[] = 'a2dismod php' . $phpVersion;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$commands[] = 'sudo a2enmod cgi';
|
$commands[] = 'a2enmod cgi';
|
||||||
$commands[] = 'sudo a2enmod mime';
|
$commands[] = 'a2enmod mime';
|
||||||
$commands[] = 'sudo a2enmod rewrite';
|
$commands[] = 'a2enmod rewrite';
|
||||||
$commands[] = 'sudo a2enmod env';
|
$commands[] = 'a2enmod env';
|
||||||
$commands[] = 'sudo a2enmod ssl';
|
$commands[] = 'a2enmod ssl';
|
||||||
$commands[] = 'sudo a2enmod actions';
|
$commands[] = 'a2enmod actions';
|
||||||
$commands[] = 'sudo a2enmod headers';
|
$commands[] = 'a2enmod headers';
|
||||||
$commands[] = 'sudo a2enmod suexec';
|
$commands[] = 'a2enmod suexec';
|
||||||
$commands[] = 'sudo a2enmod ruid2';
|
$commands[] = 'a2enmod ruid2';
|
||||||
$commands[] = 'sudo a2enmod proxy';
|
$commands[] = 'a2enmod proxy';
|
||||||
$commands[] = 'sudo a2enmod proxy_http';
|
$commands[] = 'a2enmod proxy_http';
|
||||||
|
|
||||||
// For Fast CGI
|
// For Fast CGI
|
||||||
// $commands[] = 'sudo a2enmod fcgid';
|
// $commands[] = 'a2enmod fcgid';
|
||||||
// $commands[] = 'sudo a2enmod alias';
|
// $commands[] = 'a2enmod alias';
|
||||||
// $commands[] = 'sudo a2enmod proxy_fcgi';
|
// $commands[] = 'a2enmod proxy_fcgi';
|
||||||
// $commands[] = 'sudo a2enmod setenvif';
|
// $commands[] = 'a2enmod setenvif';
|
||||||
|
|
||||||
// $commands[] = 'ufw allow in "Apache Full"';
|
// $commands[] = 'ufw allow in "Apache Full"';
|
||||||
$commands[] = 'systemctl restart apache2';
|
$commands[] = 'systemctl restart apache2';
|
||||||
|
|
Loading…
Reference in a new issue