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-ASN: 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 86D991F87F for ; Fri, 24 May 2019 02:57:59 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/7] doc: daemon: fix manpage section for nginx Date: Fri, 24 May 2019 02:57:53 +0000 Message-Id: <20190524025758.32261-3-e@80x24.org> In-Reply-To: <20190524025758.32261-1-e@80x24.org> References: <20190524025758.32261-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: The nginx manpage is in section 8. --- Documentation/public-inbox-daemon.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/public-inbox-daemon.pod b/Documentation/public-inbox-daemon.pod index a3c97d8..47d15de 100644 --- a/Documentation/public-inbox-daemon.pod +++ b/Documentation/public-inbox-daemon.pod @@ -37,7 +37,7 @@ This takes an absolute path to a Unix socket or HOST:PORT to listen on. For example, to listen to TCP connections on port 119, use: C<-l 0.0.0.0:119>. This may also point to a Unix socket (C<-l /path/to/http.sock>) for a reverse proxy -like L to use. +like L to use. May be specified multiple times to allow listening on multiple sockets. @@ -77,7 +77,7 @@ Default: 1 =head1 SIGNALS -Most of our signal handling behavior is copied from L +Most of our signal handling behavior is copied from L and/or L; so it is possible to reuse common scripts for managing them. -- EW