about summary refs log tree commit homepage
path: root/examples/varnish-4.vcl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/varnish-4.vcl')
-rw-r--r--examples/varnish-4.vcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/varnish-4.vcl b/examples/varnish-4.vcl
index 24296032..624f6013 100644
--- a/examples/varnish-4.vcl
+++ b/examples/varnish-4.vcl
@@ -10,7 +10,7 @@
 
 vcl 4.0;
 backend default {
-        # this is where public-inbox-http listens
+        # this is where public-inbox-httpd listens
         .host = "127.0.0.1";
         .port = "280";
 }
@@ -28,7 +28,7 @@ sub vcl_recv {
 }
 
 sub vcl_pipe {
-        # By default Connection: close is set on all piped requests by varnish,
+        # By default, Connection: close is set on all piped requests by varnish,
         # but public-inbox-httpd supports persistent connections well :)
         unset bereq.http.connection;
         return (pipe);