varnish

varnish

http://www.varnish-cache.org

vim /etc/yum.conf

keepcache = 1

rpm --nosignature -i https://kkkk.rpm


cat /etc/yum.repos.d/varnish.repo


ls /etc/sysconfig/varnish

ls /etc/varnish/default.vcl


backend www1 {

.host = "192.168.1.13";

.port = "80";

}


backend www2 {

.host = "192.168.1.15";

.port = "80";

}

sub vcl_recv {

if(req.http.host ~ "^(www.)huiyunltd.com"){

set req.http.host = "www.xuegod.cn";

set req.backend_hint = www1

}elseif(req.http.host ~ "^huiyunltd.com"){

set req

}

}


/etc/init.d/varnish restart

netstat -antup |grep varnish


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章