> Yup just place it in your php location block.
> location ~ .*\.php$ {
> if (!-f $request_filename) {
> return 404;
> }
> fastcgi_pass 127.0.0.1:10000;
> fastcgi_index index.php;
> }
> this is how i have been handling this without issues for sometime.
Thx.. Works as expected.
rr