请帮我添加清漆配置中的expires标头。 max_age已经在vcl_fetch中定义,需要根据max_age添加expires头。
答案 0 :(得分:3)
除了Expires
之外,通常您不需要设置Cache-Control
标头。 Expires
标头告知缓存(无论是代理服务器还是浏览器缓存)缓存文件,直到达到Expires
时间。如果同时定义Cache-Control
和Expires
,则Cache-Control
优先。
考虑以下响应标头:
HTTP/1.1 200 OK
Content-Type: image/jpeg
Date: Fri, 14 Mar 2014 08:34:00 GMT
Expires: Fri, 14 Mar 2014 08:35:00 GMT
Cache-Control: public, max-age=600
根据Expires
标题,内容应在一分钟后刷新,但由于max-age设置为600秒,因此图像会保持缓存,直到格林尼治标准时间08:44:00。
如果您希望在特定时间过期内容,则应删除Cache-Control
标题,并仅使用Expires
。
Mark Nottingham写得非常好tutorial on caching。在考虑缓存策略时,绝对值得一读。
如果您希望根据Expires
设置Cache-Control: max-age
标头,则需要在VCL中使用inline-C。如果将来删除该页面,则会从https://www.varnish-cache.org/trac/wiki/VCLExampleSetExpires复制以下内容。
添加以下原型:
C{
#include <string.h>
#include <stdlib.h>
void TIM_format(double t, char *p);
double TIM_real(void);
}C
以下是对vcl_deliver函数的内联-C:
C{
char *cache = VRT_GetHdr(sp, HDR_RESP, "\016cache-control:");
char date[40];
int max_age = -1;
int want_equals = 0;
if(cache) {
while(*cache != '\0') {
if (want_equals && *cache == '=') {
cache++;
max_age = strtoul(cache, 0, 0);
break;
}
if (*cache == 'm' && !memcmp(cache, "max-age", 7)) {
cache += 7;
want_equals = 1;
continue;
}
cache++;
}
if (max_age != -1) {
TIM_format(TIM_real() + max_age, date);
VRT_SetHdr(sp, HDR_RESP, "\010Expires:", date, vrt_magic_string_end);
}
}
}C
答案 1 :(得分:0)
假设max-age
已经设置(即您的网络服务器),您可以在vcl中使用此配置设置Expires标头:
# Add required lib to use durations
import std;
sub vcl_backend_response {
# If max-age is setted, add a custom header to delegate calculation to vcl_deliver
if (beresp.ttl > 0s) {
set beresp.http.x-obj-ttl = beresp.ttl + "s";
}
}
sub vcl_deliver {
# Calculate duration and set Expires header
if (resp.http.x-obj-ttl) {
set resp.http.Expires = "" + (now + std.duration(resp.http.x-obj-ttl, 3600s));
unset resp.http.x-obj-ttl;
}
}
来源:https://www.g-loaded.eu/2016/11/25/how-to-set-the-expires-header-correctly-in-varnish/
其他信息:您可以使用以下示例在Apache服务器上设置max-age
:
<LocationMatch "/(path1|path2)/">
ExpiresActive On
ExpiresDefault "access plus 1 week"
</LocationMatch>