Que tal isso:
sub vcl_backend_error {
set beresp.http.Content-Type = "application/json; charset=utf-8";
synthetic( {"{ "msg" :{ "status": 2 } }"} );
return (deliver);
}
Uma resposta JSON, como mostrada abaixo, deve ser retornada se o back-end subjacente estiver inativo ou algo assim.
{
"msg" :{
"status": 2
}
}
Isso é possível com verniz?
Que tal isso:
sub vcl_backend_error {
set beresp.http.Content-Type = "application/json; charset=utf-8";
synthetic( {"{ "msg" :{ "status": 2 } }"} );
return (deliver);
}
Tags varnish