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