美文网首页
nginx和memcached整合

nginx和memcached整合

作者: EmptyBottl_520d | 来源:发表于2018-07-06 10:06 被阅读0次
            location / {
                    set $memcached_key $uri;
                    memcached_pass 127.0.0.1:11211;
                    default_type text/html;
                    error_page 404 @fallback;
            }
            location @fallback {
                    index 404.html;
    }
    
    

    相关文章

      网友评论

          本文标题:nginx和memcached整合

          本文链接:https://www.haomeiwen.com/subject/qbrvuftx.html