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

14 lines
395 B
Nginx Configuration File
Raw Normal View History

2019-06-30 20:18:27 +02:00
root __FINALPATH__/;
index index.php;
location __PATH__/ {
try_files $uri $uri/ /index.php?$args;
}
2019-06-30 19:52:29 +02:00
2019-06-30 20:18:27 +02:00
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
try_files $uri =404;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}