1ceb81
# pass the PHP scripts to FastCGI server
1ceb81
#
1ceb81
# See conf.d/php-fpm.conf for socket configuration
1ceb81
#
1ceb81
index index.php index.html index.htm;
1ceb81
1ceb81
location ~ \.(php|phar)(/.*)?$ {
1ceb81
    fastcgi_split_path_info ^(.+\.(?:php|phar))(/.*)$;
1ceb81
1ceb81
    fastcgi_intercept_errors on;
1ceb81
    fastcgi_index  index.php;
1ceb81
    include        fastcgi_params;
1ceb81
    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
1ceb81
    fastcgi_param  PATH_INFO $fastcgi_path_info;
1ceb81
    fastcgi_pass   php-fpm;
1ceb81
}