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:
parent
47cadfce7b
commit
adefc2865a
1 changed files with 16 additions and 11 deletions
|
@ -4,21 +4,26 @@ location PATHTOCHANGE {
|
||||||
try_files $uri $uri/ @yourls;
|
try_files $uri $uri/ @yourls;
|
||||||
|
|
||||||
index index.php index.html index.htm;
|
index index.php index.html index.htm;
|
||||||
default_type text/html;
|
|
||||||
|
|
||||||
location @yourls {
|
if (-f $request_filename) {
|
||||||
rewrite ^(.*)$ /yourls-loader.php;
|
expires max;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ .php$ {
|
if (!-e $request_filename) {
|
||||||
fastcgi_split_path_info ^(.+.php)(/.+)$;
|
rewrite ^/([0-9a-z]+)/?$ /yourls-go.php?id=$1 last;
|
||||||
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
rewrite ^/([0-9a-z]+)\+/?$ /yourls-infos.php?id=$1 last;
|
||||||
|
rewrite ^/([0-9a-z]+)\+all/?$ /yourls-infos.php?id=$1&all=1 last;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ \.php$ {
|
||||||
|
fastcgi_pass 127.0.0.1:9000;
|
||||||
fastcgi_index index.php;
|
fastcgi_index index.php;
|
||||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ /.ht {
|
location ~ /\.ht {
|
||||||
deny all;
|
deny all;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue