summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Fenzi <kevin@scrye.com>2017-05-31 14:57:22 +0000
committerKevin Fenzi <kevin@scrye.com>2017-05-31 14:57:22 +0000
commit7aca0c832892b77eab4f54d9c40b61805ab10e88 (patch)
tree45bd83697310b562dd850f09a34902e9cb5e5d73
parent0a1004b1ebc2bd973c6f165e3dcf3607264991aa (diff)
downloadansible-7aca0c832892b77eab4f54d9c40b61805ab10e88.tar.gz
ansible-7aca0c832892b77eab4f54d9c40b61805ab10e88.tar.xz
ansible-7aca0c832892b77eab4f54d9c40b61805ab10e88.zip
up the timeouts on kojipkgs varnish to hopefully make up for slow storage issues
-rw-r--r--roles/varnish/templates/kojipkgs.vcl.j24
1 files changed, 3 insertions, 1 deletions
diff --git a/roles/varnish/templates/kojipkgs.vcl.j2 b/roles/varnish/templates/kojipkgs.vcl.j2
index c3f7d51d1..8062d752b 100644
--- a/roles/varnish/templates/kojipkgs.vcl.j2
+++ b/roles/varnish/templates/kojipkgs.vcl.j2
@@ -25,10 +25,12 @@ acl purge {
backend localapache {
.host = "127.0.0.1";
.port = "8080";
+ .first_byte_timeout = 60s;
+ .between_bytes_timeout = 60s;
.probe = {
.url = "/";
.interval = 5s;
- .timeout = 1s;
+ .timeout = 5s;
.window = 5;
.threshold = 3; }
}