1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yourls_ynh.git synced 2024-09-03 20:35:59 +02:00
yourls_ynh/conf/nginx.conf
2014-06-16 10:52:28 +02:00

33 lines
No EOL
811 B
Nginx Configuration File

location PATHTOCHANGE {
alias ALIASTOCHANGE;
try_files $uri $uri/ @yourls;
index index.php index.html index.htm;
if (-f $request_filename) {
expires max;
break;
}
if (!-e $request_filename) {
rewrite ^/([0-9a-z]+)/?$ /yourls-go.php?id=$1 last;
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_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}