mirror of
https://github.com/YunoHost-Apps/phpipam_ynh.git
synced 2024-09-03 19:56:39 +02:00
11 lines
296 B
Nginx Configuration File
11 lines
296 B
Nginx Configuration File
|
root __FINALPATH__/;
|
||
|
index index.php;
|
||
|
|
||
|
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;
|
||
|
|
||
|
}
|