1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/shaarli_ynh.git synced 2024-09-03 20:26:10 +02:00
shaarli_ynh/conf/nginx.conf

33 lines
909 B
Nginx Configuration File
Raw Normal View History

2020-03-24 22:00:45 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2018-06-25 05:57:41 +02:00
# Path to source
alias __FINALPATH__/ ;
# Force usage of https
2013-12-19 03:02:51 +01:00
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
2020-11-11 14:06:42 +01:00
2020-11-24 23:40:11 +01:00
index index.php;
2020-12-01 12:14:47 +01:00
if (!-f $request_filename) {
rewrite ^ __PATH__/index.php last;
}
2020-12-01 11:36:55 +01:00
try_files $uri $uri/ __PATH__//__PATH__/index.php$is_args$args;
2013-12-19 03:02:51 +01:00
location ~ [^/]\.php(/|$) {
2020-11-24 23:40:11 +01:00
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
2013-12-19 03:02:51 +01:00
}
2014-05-29 15:30:21 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2013-12-19 03:02:51 +01:00
}