博客首页 注册 建议与交流 排行榜 加入友情链接
推荐 投诉 搜索: 帮助

uingei

  zfs.cublog.cn

关于作者
名:经纬
职业:SA
年龄:28
位置:
个性介绍:
|| << >> ||
我的分类


nginx fastcgi cache
Changes with nginx 0.7.45                                        30 Mar 2009

    *) Feature: the ngx_http_fastcgi_module preliminary cache support.
 
http {
    ...
    fastcgi_cache_path /path/to/cache levels=1:2 keys_zone=NAME:10m inactive=5m max_size=2m;
    ...

server {
    location / {
    fastcgi_pass localhost:9000;

    fastcgi_cache NAME;
    fastcgi_cache_key  localhost:9000$request_uri;

    fastcgi_cache_valid 200 302 1h;
    fastcgi_cache_valid 301 1d;
    fastcgi_cache_valid any 1m;

    #fastcgi_cache_min_uses 1;
    }
}

发表于: 2009-03-31,修改于: 2009-04-01 16:08,已浏览538次,有评论0条 推荐 投诉


网友评论
 发表评论