location ~ \.php$ {
set $memcached_key "page:$request_uri";
memcached_pass 127.0.0.1:11211;
default_type text/html;
error_page 404 405 502 = @cache_miss;
}
location @cache_miss {
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
fastcgi_param FUEL_ENV production;
fastcgi_pass 127.0.0.1:9000;
}
It looks like you're new here. If you want to get involved, click one of these buttons!