diff options
-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; } |