nginx整合memcached
2018-01-03 本文已影响0人
EmptyBottl_520d
location / {
set $memcached_key $uri;
memcached_pass 127.0.0.1:11211;
default_type text/html;
error_page 404 @fallback;
}
location @fallback {
proxy_pass http://backserver;
}