diff options
author | marcelloc <marcellocoutinho@gmail.com> | 2011-10-25 19:09:38 -0200 |
---|---|---|
committer | marcelloc <marcellocoutinho@gmail.com> | 2011-10-25 19:09:38 -0200 |
commit | c26822f162cc3c07f4e2737a56781fb3d80db329 (patch) | |
tree | 20d82ec5597a29770bd9cf6608e22cdf6e12db03 /config | |
parent | 8d9d9a5c91036f0610a05f34fb4df4aa8bf19d7f (diff) | |
parent | 0cd5565edcacffad49dcdfa48788e456fe57447b (diff) | |
download | pfsense-packages-c26822f162cc3c07f4e2737a56781fb3d80db329.tar.gz pfsense-packages-c26822f162cc3c07f4e2737a56781fb3d80db329.tar.bz2 pfsense-packages-c26822f162cc3c07f4e2737a56781fb3d80db329.zip |
Merge branch 'master' of https://github.com/bsdperimeter/pfsense-packages
Diffstat (limited to 'config')
-rw-r--r-- | config/varnish64/varnish.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/varnish64/varnish.inc b/config/varnish64/varnish.inc index abf07018..7b514780 100644 --- a/config/varnish64/varnish.inc +++ b/config/varnish64/varnish.inc @@ -596,7 +596,7 @@ sub vcl_fetch { ## the request will be error'ed. max_restarts defaults to 4. This prevents ## an eternal loop in the event that, e.g., the object does not exist at all. if (beresp.status != 200 && beresp.status != 403 && beresp.status != 404 && - beresp.status != 303 && beresp.status != 302 && beresp.status != 301) { + beresp.status != 303 && beresp.status != 302 && beresp.status != 301 && beresp.status != 401 ) { {$vcl_saint_mode}restart; } |