diff --git a/conf/nginx.conf b/conf/nginx.conf index 3dfebc2..6f4302c 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,19 +1,26 @@ location PATHTOCHANGE { alias ALIASTOCHANGE; - try_files $uri $uri/ /yourls-loader.php; + try_files $uri $uri/ @yourls; index index.php index.html index.htm; default_type text/html; - location ~ [^/]\.php(/|$) { - fastcgi_split_path_info ^(.+?\.php)(/.*)$; - 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; - } + location @yourls { + rewrite ^(.*)$ /yourls-loader.php; + } + + location ~ .php$ { + fastcgi_split_path_info ^(.+.php)(/.+)$; + fastcgi_pass unix:/var/run/php5-fpm.sock; + fastcgi_index index.php; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + include fastcgi_params; + } + + location ~ /.ht { + deny all; + } # Include SSOWAT user panel.