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

19 lines
482 B
Nginx Configuration File
Raw Normal View History

2017-06-12 22:24:37 +02:00
location ^~ YNH_EXAMPLE_PATH {
alias YNH_WWW_PATH;
try_files $uri $uri/ @monica;
location ~ \.php {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
2017-06-13 22:18:05 +02:00
fastcgi_pass unix:/run/php/php7.0-fpm.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
}