X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=etc%2Fnginx%2Fsite.d%2Flhc-stats%2Fsite.conf;h=a70dfeadd951b2306ec857bb645ddb51842d63bd;hb=837755eea02c6cc52153764f229f6f4965af5de9;hp=f721c271dbe80007df57a36fab13c5effe0d86bc;hpb=5682b99b1785d7a53ded1f3d0d1e0ab938f1efc6;p=lhc%2Fateliers.git diff --git a/etc/nginx/site.d/lhc-stats/site.conf b/etc/nginx/site.d/lhc-stats/site.conf index f721c27..a70dfea 100644 --- a/etc/nginx/site.d/lhc-stats/site.conf +++ b/etc/nginx/site.d/lhc-stats/site.conf @@ -51,16 +51,16 @@ location = /piwik.php { add_header X-Piwik-Long-Cache $upstream_cache_status; expires epoch; fastcgi_cache microcache; - fastcgi_cache_bypass $no_cache; + fastcgi_cache_bypass $lhc_stats_no_cache; fastcgi_cache_use_stale error timeout invalid_header updating http_500; fastcgi_cache_valid 200 301 2h; fastcgi_cache_valid 302 30m; fastcgi_cache_valid 404 10m; fastcgi_ignore_headers Cache-Control Expires; - fastcgi_no_cache $no_cache; + fastcgi_no_cache $lhc_stats_no_cache; fastcgi_param REDIRECT_STATUS 200; - fastcgi_pass php5_fpm_lhc_stats; + fastcgi_pass php_fpm_lhc_stats; } location ~* ^.+\.php$ { ## Any other attempt to access PHP files redirects to the root. @@ -70,7 +70,7 @@ location ~* (?:DESIGN|(?:gpl|README|LICENSE)[^.]*|LEGALNOTICE)(?:\.txt)*$ { ## Redirect to the root if attempting to access a txt file. return 302 /; } -location ~* \.(?:bat|html?|git|ini|sh|svn[^.]*|txt|tpl|xml)$ { +location ~* \.(?:bat|git|ini|sh|svn[^.]*|txt|tpl|xml)$ { ## Disallow access to several helper files. return 404; }