From b52d884b6dc0ffdd0e1241d70f0657522c69dafb Mon Sep 17 00:00:00 2001 From: aymhce Date: Mon, 4 Sep 2017 20:29:11 +0000 Subject: [PATCH] remove ending slash of location + reformating --- conf/nginx.conf | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index dcec25e..67ee1e9 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,4 +1,4 @@ -location PATHTOCHANGE/ { +location PATHTOCHANGE { alias ALIASTOCHANGE; @@ -12,20 +12,20 @@ location PATHTOCHANGE/ { fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; include fastcgi_params; - fastcgi_param REMOTE_USER $remote_user; - fastcgi_param PATH_INFO $fastcgi_path_info; + fastcgi_param REMOTE_USER $remote_user; + fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $request_filename; } location ^~ PATHTOCHANGE/bin/ { - deny all; - return 403; - } + deny all; + return 403; + } - location ^~ PATHTOCHANGE/config/ { - deny all; - return 403; - } + location ^~ PATHTOCHANGE/config/ { + deny all; + return 403; + } rewrite ^PATHTOCHANGE/play/ssid/(\w+)/type/(\w+)/oid/([0-9]+)/uid/([0-9]+)/name/(.*)$ PATHTOCHANGE/play/index.php?ssid=$1&type=$2&oid=$3&uid=$4&name=$5 last; rewrite ^PATHTOCHANGE/play/ssid/(\w+)/type/(\w+)/oid/([0-9]+)/uid/([0-9]+)/client/(.*)/noscrobble/([0-1])/name/(.*)$ PATHTOCHANGE/play/index.php?ssid=$1&type=$2&oid=$3&uid=$4&client=$5&noscrobble=$6&name=$7 last; @@ -35,13 +35,13 @@ location PATHTOCHANGE/ { rewrite ^PATHTOCHANGE/rest/(.*)\.view$ PATHTOCHANGE/rest/index.php?action=$1 last; rewrite ^PATHTOCHANGE/rest/fake/(.+)$ PATHTOCHANGE/play/$1 last; } - location PATHTOCHANGE/rest { - limit_except GET POST { - deny all; - } - } + location PATHTOCHANGE/rest { + limit_except GET POST { + deny all; + } + } - # Include SSOWAT user panel. - # include conf.d/yunohost_panel.conf.inc; + # Include SSOWAT user panel. + # include conf.d/yunohost_panel.conf.inc; }