From 9602a775f2b788ba5c040243d45926579513a053 Mon Sep 17 00:00:00 2001 From: Yalh Date: Sat, 26 Jan 2019 04:22:15 +0100 Subject: [PATCH] Fix install --- conf/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 3cd30ff..48e9d58 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -2,7 +2,7 @@ location __PATH__/ { # Path to source - alias __FINALPATH__/ ; + alias __FINALPATH__ ; # Force usage of https if ($scheme = http) { @@ -18,7 +18,7 @@ location __PATH__/ { rewrite ^(.*)$ /__PATH__/index.php last; location ~ [^/]\.php(/|$) { fastcgi_split_path_info ^(.+?\.php)(/.*)$; - fastcgi_pass unix:/var/run/php5-fpm-__NAME__.sock; + fastcgi_pass unix:/var/run/php5-fpm-__NAME__.sock; fastcgi_index index.php; include fastcgi_params; fastcgi_param HTTPS on;