wp-ffpc/nginx-sample.conf
cadeyrn dfe6958eb3 tagging version 0.3.2
git-svn-id: http://plugins.svn.wordpress.org/wp-ffpc/tags/0.3.2@511034 b8457f37-d9ea-0310-8a92-e5e31aec5664
2012-02-27 09:37:30 +00:00

15 lines
No EOL
284 B
Text

location / {
try_files $uri $uri/ @memcached;
}
location @memcached {
default_type text/html;
set $memcached_key DATAPREFIX$host$request_uri;
memcached_pass MEMCACHEDHOST:MEMCACHEDPORT;
error_page 404 = @rewrites;
}
location @rewrites {
rewrite ^(.*)$ /index.php?q=$1 last;
}