diff options
author | Kristian Lyngstol <kristian@bohemians.org> | 2015-04-25 19:10:33 +0200 |
---|---|---|
committer | Kristian Lyngstol <kristian@bohemians.org> | 2015-04-25 19:10:33 +0200 |
commit | 867d787c4ab152719dfe13b1f13ab3e303a4780e (patch) | |
tree | aec1a96709f86faa3cb2cedf53008ec0d81a6554 /web/etc/varnish | |
parent | c7ebb7269d9ea8ead03b717153bfa54e3c8226c9 (diff) |
NMS: Monster-commit after local .git corruption
This constitutes ... I don't know.... 20 commits or something like that.
Unfortunately my local .git directory got corrupted while the check out was
OK (after the VM froze). Instead of trying to recreate the local history,
I'm just hurrying the hell up and getting this work OFF my local laptop and
VM so I don't lose anything for good.
Diffstat (limited to 'web/etc/varnish')
-rw-r--r-- | web/etc/varnish/default.vcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/etc/varnish/default.vcl b/web/etc/varnish/default.vcl index 5f825a6..b4445d1 100644 --- a/web/etc/varnish/default.vcl +++ b/web/etc/varnish/default.vcl @@ -95,7 +95,7 @@ sub vcl_backend_response { set beresp.ttl = 0s; } if(bereq.url ~ "port-state.pl" && beresp.status == 200) { - set beresp.ttl = 30s; + set beresp.ttl = 1s; } if (beresp.status == 200 && bereq.url ~ "now=") { set beresp.ttl = 60m; |