From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47277) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dprWp-0008UE-VH for guix-patches@gnu.org; Thu, 07 Sep 2017 03:47:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dprWg-0008DU-AT for guix-patches@gnu.org; Thu, 07 Sep 2017 03:47:12 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45103) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dprWg-0008DQ-5R for guix-patches@gnu.org; Thu, 07 Sep 2017 03:47:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dprWf-0002V6-Mv for guix-patches@gnu.org; Thu, 07 Sep 2017 03:47:01 -0400 Subject: [bug#28356] [PATCH 1/1] doc: Replace server-list with server-blocks. Resent-Message-ID: From: Oleg Pykhalov References: <871snlieja.fsf@magnolia> <87y3ptgzvx.fsf@magnolia> <20170907065852.51fe3c8b@cbaines.net> Date: Thu, 07 Sep 2017 10:46:29 +0300 In-Reply-To: <20170907065852.51fe3c8b@cbaines.net> (Christopher Baines's message of "Thu, 7 Sep 2017 06:58:52 +0100") Message-ID: <87ingvuf1m.fsf@magnolia> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: bug#28356 <28356@debbugs.gnu.org> --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello Christopher, Christopher Baines writes: > On Tue, 05 Sep 2017 14:15:30 +0300 > Oleg Pykhalov wrote: > >> From 2799970350073812c2d458d9750649cdf7f23315 Mon Sep 17 00:00:00 2001 >> From: Oleg Pykhalov >> Date: Tue, 5 Sep 2017 14:04:14 +0300 >> Subject: [PATCH 1/1] doc: Replace server-list with server-blocks. >>=20 >> * doc/guix.texi (Web Services): Replace 'server-list' with >> 'server-blocks'. --- >> doc/guix.texi | 10 +++++----- >> 1 file changed, 5 insertions(+), 5 deletions(-) >>=20 >> diff --git a/doc/guix.texi b/doc/guix.texi >> index e7a88e19f..9ac52535b 100644 > > I'm having problems applying this: > > error: sha1 information is lacking or useless (doc/guix.texi). > error: could not build fake ancestor > > I think this might be happening, as I don't have something locally that > coresponds to e7a88e19f. Is this patch on some version of guix.texi > that hasn't made it in to the master branch yet? Yes, sorry for that. >> =E2=80=A6 > Thanks for spotting this. Obviously I missed it when removing the > nginx-service procedure. > > It looks like this is also a problem elsewhere in the docs, as I can > see a few more instances of server-list. Also, it looks like > upstream-list has exactly the same problem. I think it would be good to > fix all of the server-list bits in this patch at least. Could you add > them? Sure, I replaced all instances in which Emacs (query-replace) found in doc/guix.texi. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-doc-Replace-server-list-with-server-blocks.patch >From 0f4ec7e7cfbf5619ce029e6dc17819d5be104b87 Mon Sep 17 00:00:00 2001 From: Oleg Pykhalov Date: Tue, 5 Sep 2017 14:04:14 +0300 Subject: [PATCH] doc: Replace server-list with server-blocks. * doc/guix.texi (Web Services): Replace 'server-list' with 'server-blocks'. --- doc/guix.texi | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index 3e9593d0c..b06108524 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -14037,7 +14037,7 @@ A simple example configuration is given below. @example (service nginx-service-type (nginx-configuration - (server-list + (server-blocks (list (nginx-server-configuration (server-name '("www.example.com")) (root "/srv/http/www.example.com") @@ -14085,7 +14085,7 @@ The directory to which NGinx will write log files. The directory in which NGinx will create a pid file, and write temporary files. -@item @code{server-list} (default: @code{'()}) +@item @code{server-blocks} (default: @code{'()}) A list of @dfn{server blocks} to create in the generated configuration file, the elements should be of type @code{}. @@ -14096,7 +14096,7 @@ HTTPS. @example (service nginx-service-type (nginx-configuration - (server-list + (server-blocks (list (nginx-server-configuration (server-name '("www.example.com")) (root "/srv/http/www.example.com") @@ -14121,7 +14121,7 @@ requests with two servers. (service nginx-service-type (nginx-configuration - (server-list + (server-blocks (list (nginx-server-configuration (server-name '("www.example.com")) (root "/srv/http/www.example.com") @@ -14143,9 +14143,9 @@ requests with two servers. @item @code{file} (default: @code{#f}) If a configuration @var{file} is provided, this will be used, rather than generating a configuration file from the provided @code{log-directory}, -@code{run-directory}, @code{server-list} and @code{upstream-list}. For -proper operation, these arguments should match what is in @var{file} to -ensure that the directories are created when the service is activated. +@code{run-directory}, @code{server-blocks} and @code{upstream-list}. For +proper operation, these arguments should match what is in @var{file} to ensure +that the directories are created when the service is activated. This can be useful if you have an existing configuration file, or it's not possible to do what is required through the other parts of the -- 2.14.1 --=-=-=--