aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Alouit <alexandre.alouit@gmail.com>2015-12-02 03:03:08 +0100
committerAlexandre Alouit <alexandre.alouit@gmail.com>2015-12-02 03:03:08 +0100
commit876dc671ef09e855eea7714c519977462e90f30c (patch)
treeb2e762c23f2ff0406e872e58d2b0d4816226a8a4
parent125e1d95edf71a6c8ac7b14348dc26eccd2a7a97 (diff)
bugfix
-rw-r--r--install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php
index 73d60f9..4fac9d8 100644
--- a/install.php
+++ b/install.php
@@ -113,7 +113,7 @@ if(is_file("/etc/apache2/apache2.conf")) {
if(is_file("/etc/nginx/nginx.conf")) {
echo "Backup Nginx file to " . $backup_dir . ".\n";
- exec("cp /etc/nginx/nginx.conf " . $backup_dir . date("Ymdhis") . "-nginx.conf"; );
+ exec("cp /etc/nginx/nginx.conf " . $backup_dir . date("Ymdhis") . "-nginx.conf");
echo "Patch Nginx and reload it.\n";
exec("patch /etc/nginx/nginx.conf < ./nginx.conf.patch");
exec("service nginx reload");