Nginx + Varnish 配置说明

Nginx + Varnish 配置说明

需求:

  • 降低服务器压力。
  • 同时在服务器宕机情况下提供运维时间。

流程:

c=>start: client
bd=>end: backend
ng=>operation: Nginx
vn=>operation: Varnish
ct=>condition: Need Cache or Not?

c->ng->ct
ct(yes)->vn
ct(no)->bd
vn->bd

Nginx配置

# 添加varnish服务器
    upstream varnish_server {
        server 127.0.0.1:6081;
    }
# 添加重定向规则
    # redirect
    location ~ "/(cn|en|jp)/.*" {
        rewrite "^/(cn|en|jp)/(.*)"   /$2?lan=$1 last;
        return 403;
    }
# 设置nginx向varnish服务器转发的规则(特定页面转发)
    # to varnish server
    # 正则会匹配/,/home,所有含k1或k2的链接,以及about_us
    location ~ "^/$|/home|.*k1.*|.*k2.*|about_us" {
        proxy_pass_header Server;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Scheme $scheme;
        proxy_pass http://varnish_server;
    }

Varnish安装与配置

  • 安装varnish
    apt-get install varnish
  • 配置varnish:两个配置文件

/etc/default/varnish

# 默认选择模式2,需要配置-a参数:'-a' 参数定义了varnish监听在哪个地址,并用该地址处理http请求
# -s参数表示缓存方式( 缓存方式 缓存大小 )
DAEMON_OPTS="-a :6081 \ # address默认为localhost,也可指明address
            ...
            -s malloc, 256m" # 缓存大小根据实际需要配置

/etc/varnish/default.vlc

# 配置后端服务器地址
backend default {
    .host = "127.0.0.1";
    .port = "8008";
}

# varnish默认不缓存带cookie的页面,强制缓存需要:
# 1.注释掉 sub vcl_recv 中的cookie判断语句:
    #    if (req.http.Authorization || req.http.Cookie) {
    #    改为
         if (req.http.Authorization){
             /* Not cacheable by default */
             return (pass);
         }
# 2.注释掉 sub vcl_fetch 中的cookie判断语句:
        if (beresp.ttl <= 0s ||
    #        beresp.http.Set-Cookie ||
            beresp.http.Vary == "*") {

# 设置缓存时间
sub vcl_fetch {
    set beresp.ttl = 60 s;

varnish匹配手机端请求

sub vcl_recv {
    if (req.http.User-Agent ~ "(?i)pad|googlebot-mobile|android|avantgo|blackberry|blazer|elaine|hiptop|ip(hone|od)|midp|mmp|o2|palm( os)?|pda|plucker|pocket|psp|smartphone|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce; (iemobile|ppc)|xiino|maemo|fennec") {
        if (req.url !~ "\?") {
             set req.url = req.url + "?source=m";
         }
         else {
             set req.url = req.url + "&source=m";
         }
    }
...
}

多后端负载均衡配置 default.vlc

backend default {
    .host = "127.0.0.1";
    .port = "8008";
    # 健康检查的配置
    .probe = {
        .url = "/";
        .interval = 10s;
        .timeout = 2s;
        .window = 3;    # 结果的滑动窗
        .threshold = 3; # 上次查询的.windows是多少时,表示后端健康
        # window和threshold要配置相同,否则后端不可用时,varnish概率性报503错误。
    }
}

backend two {
    .host = "10.0.50.132";
    .port = "8008";
}
# 配置director组, 也可以配置多个组;
# 配置负载均衡时,应对后端服务器作健康检查(配置.probe)。
director group_one random {
    # random表示随机分发
    {
        .backend = default;
        # 配置权重
        .weight = 1;
    }
    {
        .backend = two;
        # 配置权重
        .weight = 1;
    }
}

sub vcl_recv {
    set req.backend = groupone;
  • 配置成功后,访问需要缓存的页面,查看响应头中的 X-Varnish和x-hits:
# X-Varnish 有两个值则说明缓存命中,第二个值表示缓存中的hash值
X-Varnish:"367697543 367697539"
# 表示该链接命中次数
x-hits:"2"

你可能感兴趣的:(Nginx + Varnish 配置说明)