<div dir="ltr"><div>If you want to run Piwik in a subdirectory of the webroot, then check this post<br></div>on how to run Piwik and Drupal together. <br><br>The idea is the same for running Piwik with any other PHP based application.<br>
<br><a href="https://groups.drupal.org/node/407348#comment-1012438">https://groups.drupal.org/node/407348#comment-1012438</a><br></div><div class="gmail_extra"><br clear="all"><div>----appa<br><br></div>
<br><br><div class="gmail_quote">On Thu, Feb 13, 2014 at 2:50 PM, Grant <span dir="ltr"><<a href="mailto:emailgrant@gmail.com" target="_blank">emailgrant@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="">>> Is it OK to use a minimal fastcgi configuration for a single file like this:<br>
>><br>
>> location ~ ^/piwik/piwik.php$ {<br>
><br>
> It doesn't make sense to use regular expression here.  Instead,<br>
> use exact match location:<br>
><br>
>     location = /piwik/piwik.php {<br>
<br>
</div>I'm only using one instance of location = or ^~ and that is on a very<br>
frequently used location.  Should I keep it that way for performance?<br>
The idea is that nginx won't have to evaluate all of the other<br>
locations when the frequently used location is accessed.<br>
<div class=""><br>
>>     fastcgi_pass unix:/run/php-fpm.socket;<br>
>>     include fastcgi_params;<br>
><br>
> The "fastcgi_params" file as shipped with nginx doesn't set the<br>
> SCRIPT_FILENAME parameter, and php will likely unable to handle<br>
> such a request.  Use "include fastcgi.conf;" instead if you don't<br>
> need SCRIPT_FILENAME customization.<br>
<br>
</div>I noticed my distro doesn't include any of the following in<br>
fastcgi_params and only the first of these in fastcgi.conf:<br>
<br>
SCRIPT_FILENAME<br>
PATH_INFO<br>
PATH_TRANSLATED<br>
<br>
They are all included in fastcgi_params in the example here:<br>
<br>
<a href="http://wiki.nginx.org/PHPFcgiExample" target="_blank">http://wiki.nginx.org/PHPFcgiExample</a><br>
<br>
Should they all be added to fastcgi_params?<br>
<span class="HOEnZb"><font color="#888888"><br>
- Grant<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</div></div></blockquote></div><br></div>