up the timeouts on kojipkgs varnish to hopefully make up for slow storage issues

This commit is contained in:
Kevin Fenzi 2017-05-31 14:57:22 +00:00
parent 0a1004b1eb
commit 7aca0c8328

View file

@ -25,10 +25,12 @@ acl purge {
backend localapache { backend localapache {
.host = "127.0.0.1"; .host = "127.0.0.1";
.port = "8080"; .port = "8080";
.first_byte_timeout = 60s;
.between_bytes_timeout = 60s;
.probe = { .probe = {
.url = "/"; .url = "/";
.interval = 5s; .interval = 5s;
.timeout = 1s; .timeout = 5s;
.window = 5; .window = 5;
.threshold = 3; } .threshold = 3; }
} }