1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/firefly-iii_ynh.git synced 2024-09-03 18:36:13 +02:00
firefly-iii_ynh/conf/nginx.conf

25 lines
638 B
Nginx Configuration File
Raw Normal View History

2018-06-17 00:50:26 +02:00
location ^~ __PATH__ {
alias __FINALPATH__/public/;
2018-06-17 06:32:42 +02:00
try_files $uri $uri/ @firefly;
2018-06-17 00:50:26 +02:00
index index.php index.htm index.html;
# Force https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
location ~ \.php {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
2018-10-08 05:49:26 +02:00
fastcgi_pass unix:/var/run/php7.2-fpm-__NAME__.sock;
2018-06-17 00:50:26 +02:00
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;
}
}
2018-06-17 06:32:42 +02:00
location @firefly {
rewrite /(.*)$ /index.php?/$1 last;
}