CentOS 7.0 配置varnish缓存

简介:

1、安装varnish

1
2
3
4
rpm -ivh http: //mirrors .opencas.cn /epel/epel-release-latest-7 .noarch.rpm
yum  install  -y varnish
systemctl start varnish
systemctl  enable  varnish

2、设置监听端口

1
2
vim  /etc/varnish/varnish .params
     VARNISH_LISTEN_PORT=6081

3、设置后端服务器

1
2
3
4
5
vim  /etc/varnish/default .vcl
backend default {
     .host =  "172.16.1.21" ;
     .port =  "80" ;
}

4、配置VCL文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#
# This is an example VCL file for Varnish.
#
# It does not do anything by default, delegating control to the
# builtin VCL. The builtin VCL is called when there is no explicit
# return statement.
#
# See the VCL chapters in the Users Guide at https://www.varnish-cache.org/docs/
# and https://www.varnish-cache.org/trac/wiki/VCLExamples for more examples.
# Marker to tell the VCL compiler that this VCL has been adapted to the
# new 4.0 format.
vcl 4.0;
# Default backend definition. Set this to point to your content server.
backend default {
     .host =  "127.0.0.1" ;
     .port =  "80" ;
}
sub vcl_recv {
     # Happens before we check if we have this in cache already.
     #
     # Typically you clean up the request here, removing cookies you don't need,
     # rewriting the request, etc.
     if  (req.url ~  "\.(php|asp|aspx|jsp|do|ashx|shtml)($|\?)" ) {
         return  (pass);
     }
      
     if  (req.url ~  "\.(css|js|html|htm|bmp|png|gif|jpg|jpeg|ico|gz|tgz|bz2|tbz|zip|rar|mp3|mp4|ogg|swf|flv)($|\?)" ) {
         unset  req.http.cookie;
         return  ( hash );
     }
      
     if  (req.restarts == 0) {
         if  (req.http.x-forwarded- for ) {
             set  req.http.X-Forwarded-For = req.http.X-Forwarded-For +  ", "  + client.ip;
         else  {
             set  req.http.X-Forwarded-For = client.ip;
         }
     }
     if  (req.http.Cache-Control ~  "(?i)no-cache" ) {
         if  (!(req.http.Via || req.http.User-Agent ~  "(?i)bot"  || req.http.X-Purge)) {
             return  (purge);
         }
     }
      
     if  (req.method !=  "GET"  && 
         req.method !=  "HEAD"  && 
         req.method !=  "PUT"  && 
         req.method !=  "POST"  && 
         req.method !=  "TRACE"  && 
         req.method !=  "OPTIONS"  && 
         req.method !=  "PATCH"  && 
         req.method !=  "DELETE" ) {        
         return  (pipe);
     }
      
     if  (req.method !=  "GET"  && req.method !=  "HEAD" ) {
         return  (pass);
     }
      
     if  (req.http.Authorization) {
         return  (pass);
     }
      
     if  (req.http.Accept-Encoding) {
         if  (req.url ~  "\.(bmp|png|gif|jpg|jpeg|ico|gz|tgz|bz2|tbz|zip|rar|mp3|mp4|ogg|swf|flv)$" ) {
             unset  req.http.Accept-Encoding;        
         } elseif (req.http.Accept-Encoding ~  "gzip" ) {
             set  req.http.Accept-Encoding =  "gzip" ;
         } elseif (req.http.Accept-Encoding ~  "deflate" ) {
             set  req.http.Accept-Encoding =  "deflate" ;
         else  {
             unset  req.http.Accept-Encoding;
         }
     }
     if  (req.http.Upgrade ~  "(?i)websocket" ) {
         return  (pipe);
     }
      
      
     if  (req.http.x-pipe && req.restarts > 0) {
         unset  req.http.x-pipe;
         return  (pipe);
     }
      
     return  ( hash );
}
sub vcl_pipe {
     if  (req.http.upgrade) {
         set  bereq.http.upgrade = req.http.upgrade;
     }
      
     return  (pipe);
}
  
sub vcl_pass {
     if  (req.method ==  "PURGE" ) {
         return  (synth(502,  "PURGE on a passed object." ));
     }
}
  
sub vcl_hash {
     hash_data(req.url);
      
     if  (req.http.host) {
         hash_data(req.http.host);
     else  {
         hash_data(server.ip);
     }
      
     if  (req.http.Cookie) {
         hash_data(req.http.Cookie);
     }
      
     if  (req.http.Accept-Encoding ~  "gzip" ) {
         hash_data( "gzip" );
     } elseif (req.http.Accept-Encoding ~  "deflate" ) {
         hash_data( "deflate" );
     }
}
  
sub vcl_hit {
     if  (req.method ==  "PURGE" ) {
         return  (synth(200,  "Purged." ));
     }
      
     if  (obj.ttl >= 0s) {
         return  (deliver);
     }
      
     return  (deliver);
}
sub vcl_miss {
     if  (req.method ==  "PURGE" ) {
         return  (synth(404,  "Purged." ));
     }
      
     return  (fetch);
}
sub vcl_backend_response {
     # Happens after we have read the response headers from the backend.
     #
     # Here you clean the response headers, removing silly Set-Cookie headers
     # and other mistakes your backend does.
}
sub vcl_purge {
     if  (req.method !=  "PURGE" ) {
         set  req.http.X-Purge =  "Yes" ;
         return  (restart);
     }
}
#设置检查是否命中X-Cache
sub vcl_deliver {
     if  (obj.hits > 0) {
         set  resp.http.X-Cache =  "HIT" ;
     else  {
         set  resp.http.X-Cache =  "MISS" ;
     }
      
     unset  resp.http.X-Powered-By;
     unset  resp.http.Server;
      
     unset  resp.http.Via;
     unset  resp.http.X-Varnish;
      
     unset  resp.http.Age;
}

5、使用chrome浏览器是否命中

wKioL1ba22zh_0LBAAAkJEa73To624.png



参考博文:http://sofar.blog.51cto.com/353572/1653683/









     本文转自1321385590 51CTO博客,原文链接:http://blog.51cto.com/linux10000/1747881,如需转载请自行联系原作者


相关文章
|
1月前
|
Linux 网络安全 Apache
CentOS 7.2配置Apache服务httpd(上)
CentOS 7.2配置Apache服务httpd(上)
194 1
|
12天前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。
本文介绍了在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。同时,文章还对比了编译源码安装与使用 RPM 包安装的优缺点,帮助读者根据需求选择最合适的方法。通过具体案例,展示了编译源码安装的灵活性和定制性。
51 2
|
12天前
|
存储 缓存 监控
配置 Webpack 5 持久化缓存时需要注意哪些安全问题?
【10月更文挑战第23天】通过全面、系统地分析和应对安全问题,能够更好地保障 Webpack 5 持久化缓存的安全,为项目的成功构建和运行提供坚实的安全基础。同时,要保持对安全技术的关注和学习,不断提升安全防范能力,以应对日益复杂的安全挑战。
|
1月前
|
存储 缓存 监控
|
26天前
|
Java jenkins 持续交付
Centos7下docker的jenkins下载并配置jdk与maven
通过上述步骤,您将成功在CentOS 7上的Docker容器中部署了Jenkins,并配置好了JDK与Maven,为持续集成和自动化构建打下了坚实基础。
78 1
|
28天前
|
存储 监控 Linux
在 CentOS 7 中如何对新硬盘进行分区、格式化、挂载及配置最佳实践
本文详细介绍了在 CentOS 7 中如何对新硬盘进行分区、格式化、挂载及配置最佳实践,包括使用 `fdisk` 创建分区、`mkfs` 格式化分区、创建挂载点、编辑 `/etc/fstab` 实现永久挂载等步骤,旨在有效管理服务器磁盘空间,提高系统稳定性和可维护性。
33 1
|
1月前
|
Linux PHP Apache
CentOS 7.2配置Apache服务httpd(下)
CentOS 7.2配置Apache服务httpd(下)
47 1
|
3月前
|
弹性计算 关系型数据库 MySQL
centos7 mysql安装及配置
本文详细介绍了在阿里云服务器ECS上通过yum源安装MySQL 8.0.12的过程,包括更新yum源、下载并安装MySQL源、解决安装过程中可能遇到的问题等步骤。此外,还介绍了如何启动MySQL服务、设置开机自启、配置登录密码、添加远程登录用户以及处理远程连接异常等问题。适合初学者参考,帮助快速搭建MySQL环境。
391 8
centos7 mysql安装及配置
|
2月前
|
Linux
CentOS 7.x时间同步服务chrony配置详解
文章详细介绍了在CentOS 7.x系统中如何安装和配置chrony服务,以及它与ntpd服务的对比,强调了chrony在时间同步方面的高效性和准确性。
160 1
CentOS 7.x时间同步服务chrony配置详解
|
29天前
|
安全 Linux 数据库连接
CentOS 7环境下DM8数据库的安装与配置
【10月更文挑战第16天】本文介绍了在 CentOS 7 环境下安装与配置达梦数据库(DM8)的详细步骤,包括安装前准备、创建安装用户、上传安装文件、解压并运行安装程序、初始化数据库实例、配置环境变量、启动数据库服务、配置数据库连接和参数、备份与恢复、以及安装后的安全设置、性能优化和定期维护等内容。通过这些步骤,可以顺利完成 DM8 的安装与配置。
179 0
下一篇
无影云桌面