From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) 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.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 2E66520710 for ; Fri, 8 Jul 2016 21:16:13 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 1/2] examples: minimize differences for systemd examples Date: Fri, 8 Jul 2016 21:16:10 +0000 Message-Id: <20160708211611.1623-2-e@80x24.org> In-Reply-To: <20160708211611.1623-1-e@80x24.org> References: <20160708211611.1623-1-e@80x24.org> List-Id: Our nntpd and httpd are similar so configuration differences should be minimized --- examples/public-inbox-httpd.socket | 2 +- examples/public-inbox-httpd@.service | 4 +++- examples/public-inbox-nntpd@.service | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/public-inbox-httpd.socket b/examples/public-inbox-httpd.socket index da37aec..1a1ed73 100644 --- a/examples/public-inbox-httpd.socket +++ b/examples/public-inbox-httpd.socket @@ -3,7 +3,7 @@ Description = public-inbox-httpd socket [Socket] -ListenStream = 127.0.0.1:280 +ListenStream = 80 Service = public-inbox-httpd@1.service [Install] diff --git a/examples/public-inbox-httpd@.service b/examples/public-inbox-httpd@.service index 4efea2a..56117ef 100644 --- a/examples/public-inbox-httpd@.service +++ b/examples/public-inbox-httpd@.service @@ -17,7 +17,9 @@ PERL_INLINE_DIRECTORY=/tmp/.pub-inline LimitNOFILE = 30000 ExecStartPre = /bin/mkdir -p -m 1777 /tmp/.pub-inline -ExecStart = /usr/local/bin/public-inbox-httpd +ExecStart = /usr/local/bin/public-inbox-httpd \ +-1 /var/log/public-inbox/httpd.out.log +StandardError = syslog Sockets = public-inbox-httpd.socket KillSignal = SIGQUIT User = nobody diff --git a/examples/public-inbox-nntpd@.service b/examples/public-inbox-nntpd@.service index bdd9734..62202c2 100644 --- a/examples/public-inbox-nntpd@.service +++ b/examples/public-inbox-nntpd@.service @@ -18,8 +18,8 @@ PERL_INLINE_DIRECTORY=/tmp/.pub-inline LimitNOFILE = 30000 ExecStartPre = /bin/mkdir -p -m 1777 /tmp/.pub-inline ExecStart = /usr/local/bin/public-inbox-nntpd \ --1 /var/log/public-inbox/nntpd.out.log \ --2 /var/log/public-inbox/nntpd.err.log +-1 /var/log/public-inbox/nntpd.out.log +StandardError = syslog Sockets = public-inbox-nntpd.socket KillSignal = SIGQUIT User = nobody -- EW