From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46671) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dk8rk-0003Q1-64 for guix-patches@gnu.org; Tue, 22 Aug 2017 09:05:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dk8re-0004pc-MI for guix-patches@gnu.org; Tue, 22 Aug 2017 09:05:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40104) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dk8re-0004pF-Ij for guix-patches@gnu.org; Tue, 22 Aug 2017 09:05:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dk8re-0003Dh-9b for guix-patches@gnu.org; Tue, 22 Aug 2017 09:05:02 -0400 Subject: [bug#28125] [PATCH 2/3] web: Add default-value for the nginx-service-type Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170817180109.14785-1-mail@cbaines.net> <20170817180109.14785-2-mail@cbaines.net> Date: Tue, 22 Aug 2017 15:04:26 +0200 In-Reply-To: <20170817180109.14785-2-mail@cbaines.net> (Christopher Baines's message of "Thu, 17 Aug 2017 19:01:08 +0100") Message-ID: <87inhf69et.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Christopher Baines Cc: 28125@debbugs.gnu.org Christopher Baines skribis: > --- > gnu/services/web.scm | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/gnu/services/web.scm b/gnu/services/web.scm > index 4156b1a56..aefae5aed 100644 > --- a/gnu/services/web.scm > +++ b/gnu/services/web.scm > @@ -324,7 +324,9 @@ of index files." > (inherit config) > (server-blocks > (append (nginx-configuration-server-blocks config) > - servers))))))) > + servers))))) > + (default-value > + (nginx-configuration)))) OK with a commit log. :-)