mirror of
https://github.com/YunoHost-Apps/phpipam_ynh.git
synced 2024-09-03 19:56:39 +02:00
12 lines
336 B
Nginx Configuration File
12 lines
336 B
Nginx Configuration File
root __FINALPATH__/;
|
|
index index.php;
|
|
try_files $uri $uri/ /index.php?$args;
|
|
|
|
location ~ \.php$ {
|
|
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;
|
|
include /etc/nginx/fastcgi_params;
|
|
|
|
}
|