Nginx, PHP FPM, try_files and path_info
In the post, http://wiki.nginx.org/PHPFcgiExample, the author gives an URL example for testing various parameters, especially PATH_INFO and $fastcgi_path_info. This URL is, http://lemp.test/test.php/foo/bar.php?v=1 (this URL is not a hyperlink and does not work, of course) I was interested to find what Location clause would be necessary to test this on my own server. In my case, I wanted to test in a separate sub-directory, so the test string becomes:- http://mydomain.co.uk/mytest/test.php/foo/bar.php?v=1 (this URL does not work either. It’s intended you construct a…