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,18 +1,25 @@
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)(/.*)$;
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;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
location ~ /.ht {
deny all;
}