Commit 7084fb10 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

White-space fix

parent 01f0e719
......@@ -40,10 +40,12 @@ server s1 {
varnish v1 -vcl+backend {
sub vcl_recv { if (req.http.purge == "yes") { return(purge); } }
sub vcl_purge { if (req.http.restart == "yes") {
sub vcl_purge {
if (req.http.restart == "yes") {
unset req.http.purge;
unset req.http.restart;
return(restart);}
return(restart);
}
}
} -start
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment