Commit bb5fab87 authored by Lasse Karstensen's avatar Lasse Karstensen

White space OCD.

parent 7e3370eb
...@@ -20,14 +20,14 @@ backend default { ...@@ -20,14 +20,14 @@ backend default {
sub vcl_recv { sub vcl_recv {
# Happens before we check if we have this in cache already. # Happens before we check if we have this in cache already.
# #
# Typically you clean up the request here, removing cookies you don't need, # Typically you clean up the request here, removing cookies you don't need,
# rewriting the request, etc. # rewriting the request, etc.
} }
sub vcl_backend_response { sub vcl_backend_response {
# Happens after we have read the response headers from the backend. # Happens after we have read the response headers from the backend.
# #
# Here you clean the response headers, removing silly Set-Cookie headers # Here you clean the response headers, removing silly Set-Cookie headers
# and other mistakes your backend does. # and other mistakes your backend does.
} }
...@@ -35,6 +35,6 @@ sub vcl_backend_response { ...@@ -35,6 +35,6 @@ sub vcl_backend_response {
sub vcl_deliver { sub vcl_deliver {
# Happens when we have all the pieces we need, and are about to send the # Happens when we have all the pieces we need, and are about to send the
# response to the client. # response to the client.
# #
# You can do accounting or modifying the final object here. # You can do accounting or modifying the final object here.
} }
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