1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monica_ynh.git synced 2024-09-03 19:46:23 +02:00
monica_ynh/conf/nginx.conf

23 lines
615 B
Nginx Configuration File
Raw Normal View History

location ^~ __PATH__ {
alias __FINALPATH__/public/;
2017-06-12 22:24:37 +02:00
try_files $uri $uri/ @monica;
2017-06-23 18:46:33 +02:00
index index.php;
# Force https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
2017-06-12 22:24:37 +02:00
location ~ \.php {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php7.1-fpm-__NAME__.sock;
2017-06-12 22:24:37 +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;
}
2017-06-08 13:32:01 +02:00
}
2017-06-12 22:24:37 +02:00
location @monica {
rewrite /(.*)$ /index.php?/$1 last;
2017-06-08 13:32:01 +02:00
}