php-fpm nxing correct PATH_INFO for Phar::webPhar()

revision b7f1c59ef20783caf990e5f26e4d86223b1615e9

raw

nginx.conf

1
2
3
4
5
6
7
location ~ \.(php|phar)(/.*)?$ {
    fastcgi_split_path_info ^(.+\.(?:php|phar))(/.+)$;
    set $path_info $fastcgi_path_info;
    fastcgi_param PATH_INFO $path_info;
    ...
}
 

History