Create default.vcl

This commit is contained in:
Manevolent 2023-04-19 20:27:32 -06:00 committed by GitHub
parent 2706793fe3
commit 6df545fc8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
varnish/default.vcl Normal file
View File

@ -0,0 +1,17 @@
vcl 4.1;
backend default {
.host = "httpd";
.port = "80";
.connect_timeout = 60s;
.first_byte_timeout = 60s;
.between_bytes_timeout = 60s;
.probe = {
.url = "/";
.interval = 5s;
.timeout = 1 s;
.window = 5;
.threshold = 3;
.initial = 1;
}
}