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;
}
上一篇 下一篇

猜你喜欢

热点阅读