Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/meteor/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Varnish 如何设置清漆,使其不会';t缓存URL_Varnish_Varnish Vcl - Fatal编程技术网

Varnish 如何设置清漆,使其不会';t缓存URL

Varnish 如何设置清漆,使其不会';t缓存URL,varnish,varnish-vcl,Varnish,Varnish Vcl,我需要从url导出csv: 等待后,我得到错误超时: 错误503服务不可用服务不可用 我试过: if (req.http.host == "domain.com" && req.url == "/nextopia/") { return (pass); } 以及: 以及: 但不见效,怎么出口呢???:(该~正在匹配,因此您只需将某些内容与url匹配,例如: if (req.url ~ "/nextopia") { return (pass); } 不使用正则表

我需要从url导出csv:

等待后,我得到错误超时:

错误503服务不可用服务不可用

我试过:

if (req.http.host == "domain.com" && req.url == "/nextopia/") {
    return (pass);
}
以及:

以及:


但不见效,怎么出口呢???:(

该~正在匹配,因此您只需将某些内容与url匹配,例如:

if (req.url ~ "/nextopia") {
    return (pass);
}
不使用正则表达式屋顶。 另外,req.url==“/nextopia/”与/nextopia/so/nextopia不匹配

你有没有检查你的日志,看看是否有一些错误,如超时和/或其他错误?干杯

.first_byte_timeout = 600s;
.between_bytes_timeout = 600s;
if (req.url ~ "/nextopia") {
    return (pass);
}