Hello!

On Wed, Feb 12, 2014 at 03:26:21PM -0800, Grant wrote:

> Is it OK to use a minimal fastcgi configuration for a single file like this:
> 
> location ~ ^/piwik/piwik.php$ {

It doesn't make sense to use regular expression here.  Instead, 
use exact match location:

    location = /piwik/piwik.php {

>     fastcgi_pass unix:/run/php-fpm.socket;
>     include fastcgi_params;

The "fastcgi_params" file as shipped with nginx doesn't set the 
SCRIPT_FILENAME parameter, and php will likely unable to handle 
such a request.  Use "include fastcgi.conf;" instead if you don't 
need SCRIPT_FILENAME customization.

-- 
Maxim Dounin
http://nginx.org/

_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to