fe07b27754
git-svn-id: http://plugins.svn.wordpress.org/wp-ffpc/trunk@586168 b8457f37-d9ea-0310-8a92-e5e31aec5664
25 lines
364 B
Text
25 lines
364 B
Text
http {
|
|
...
|
|
server {
|
|
...
|
|
|
|
location / {
|
|
try_files $uri $uri/ @memcached;
|
|
}
|
|
|
|
location @memcached {
|
|
default_type text/html;
|
|
|
|
set $memcached_key DATAPREFIX$scheme://$host$request_uri;
|
|
memcached_pass MEMCACHEDHOST:MEMCACHEDPORT;
|
|
error_page 404 = @rewrites;
|
|
}
|
|
|
|
location @rewrites {
|
|
rewrite ^(.*)$ /index.php?q=$1 last;
|
|
}
|
|
|
|
...
|
|
}
|
|
}
|
|
...
|