From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id EBDA51F9FD for ; Sat, 13 Mar 2021 00:08:47 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] examples/varnish-4: http => httpd Date: Fri, 12 Mar 2021 16:08:47 -0800 Message-Id: <20210313000847.23433-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Our HTTP daemon is `public-inbox-httpd', not `public-inbox-http'. --- examples/varnish-4.vcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/varnish-4.vcl b/examples/varnish-4.vcl index 24296032..5fc202ed 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"; }