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

29 lines
730 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
index index.html index.php;
try_files $uri $uri/ /index.php?q=$uri&$args;
2013-12-19 03:02:51 +01:00
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
fastcgi_index index.php;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
include fastcgi_params;
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
}