标签归档:varnish

varnish vcl

# This is a basic VCL configuration file for varnish.  See the vcl(7)
# man page for details on VCL syntax and semantics.
# 
# Default backend definition.  Set this to point to your content
# server.
# 

probe healthcheck {
   .url = "/";
   .interval = 60s;
   .timeout = 0.3s;
   .wind...

继续阅读

发表在 web server | 标签为 | varnish vcl已关闭评论

varnish 参数说明

vcl_init

Called when VCL is loaded, before any requests pass through it. Typically used to initialize VMODs.

当VCL加载时调用,之后加载客户请求。一般用于初始化VMOD模块。

return() values:

返回值有:

ok Normal return, VCL continues lo...

继续阅读

发表在 web server | 标签为 | varnish 参数说明已关闭评论

Varnish 配置与管理

管理varnish以及清除内存等操作虽然可以使用varnishadm,但是这里推荐使用telnet,一个交互的管理界面。

比如: telnet 127.0.0.1 6082

之后,输入help会显示所有可用命令。

help [command] ping [timestamp] status
start
stop
stats
vcl.load
vcl.inline
vcl.use
vcl.discard
vcl.list
vcl.show
param.show [-l] [] param.set
quit
purge.url
purge.hash
purge    [&&   ]...
purge.list

继续阅读

发表在 web server | 标签为 | Varnish 配置与管理已关闭评论

打建性能比squid高很多的varnish服务器

https://www.varnish-cache.org/

1.下载源码包编译安装:

cd /usr/local/src && wget http://nchc.dl.sourceforge.net/sourceforge/varnish/varnish-1.1.1.tar.gz
tar zxvf /usr/local/src/varnish-1.1.1.tar.gz
cd /usr/local/src/varnish-1.1.1
./autogen.sh
./configure –enable-debugging-symbols –enable-developer-wa...

继续阅读

发表在 web server | 标签为 | 68条评论