1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yourls_ynh.git synced 2024-09-03 20:35:59 +02:00

update nginx conf

This commit is contained in:
Thomas LEBEAU 2014-06-16 10:48:07 +02:00
parent ca8f9c1608
commit 47cadfce7b

View file

@ -1,19 +1,26 @@
location PATHTOCHANGE { location PATHTOCHANGE {
alias ALIASTOCHANGE; alias ALIASTOCHANGE;
try_files $uri $uri/ /yourls-loader.php; try_files $uri $uri/ @yourls;
index index.php index.html index.htm; index index.php index.html index.htm;
default_type text/html; default_type text/html;
location ~ [^/]\.php(/|$) { location @yourls {
fastcgi_split_path_info ^(.+?\.php)(/.*)$; rewrite ^(.*)$ /yourls-loader.php;
fastcgi_pass unix:/var/run/php5-fpm.sock; }
fastcgi_index index.php;
include fastcgi_params; location ~ .php$ {
fastcgi_param REMOTE_USER $remote_user; fastcgi_split_path_info ^(.+.php)(/.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info; 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. # Include SSOWAT user panel.