varnish バックエンドが50xの場合はキャッシュを返す

https://github.com/mattiasgeniar/varnish-4.0-configuration-templates/issues/24

sub vcl_backend_response {
    if (beresp.status == 500 || beresp.status == 502 || beresp.status == 503 || beresp.status == 504) {
        return (abandon);
    }