From unknown Sun Jun 22 00:48:58 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#58594] [PATCH 2/2] services: nginx: Improve reload action documentation. Resent-From: EuAndreh Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 17 Oct 2022 21:29:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 58594 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 58594@debbugs.gnu.org Cc: EuAndreh X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16660421334234 (code B ref -1); Mon, 17 Oct 2022 21:29:02 +0000 Received: (at submit) by debbugs.gnu.org; 17 Oct 2022 21:28:53 +0000 Received: from localhost ([127.0.0.1]:50287 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okXfJ-00016D-BC for submit@debbugs.gnu.org; Mon, 17 Oct 2022 17:28:53 -0400 Received: from lists.gnu.org ([209.51.188.17]:56020) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okXfH-000163-GA for submit@debbugs.gnu.org; Mon, 17 Oct 2022 17:28:51 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35172) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1okXfG-0007rV-Iu for guix-patches@gnu.org; Mon, 17 Oct 2022 17:28:50 -0400 Received: from box.euandre.org ([46.101.160.115]:58097) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1okXfF-00051W-1Z for guix-patches@gnu.org; Mon, 17 Oct 2022 17:28:50 -0400 Received: from authenticated-user (box.euandre.org [46.101.160.115]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 431B1FC4B2; Mon, 17 Oct 2022 18:28:16 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1666042097; bh=LsknjL4P3RWujnvy7m6kqw0jWEBvesGfuAdHAn/0AGE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=wVktz4UD30LdWHLirWpuZiagdVcVhYGK8SW00Vx9JQIjVMs28ag/BFSO56nVYV/Lr OVQKdqbE8Kg3QTxZU5CR7It1rdC9WtevAbGIVviCocxo2POAliTUn6VUK5plYUMFFd 9sOGHwHWf6g3BV/Ec+YTOKSMMQdcAo6c56VuzMIlIqr4k/w3W9M6u95rpdwf4UIeNE AUxEIPRaAwxW+D1dRFF/g7UIORAS24gNeIaOw735IZ7kX4q7hPIxtN++g0YQA6XwAT RMfCD0O2Ik1QL+D4npMXdAvrNruQ0ZR6NVdB/uabj14vwTSoQSLcK0CVlbZUUfzZU8 mkfgLpGqZCMCQ== From: EuAndreh Date: Mon, 17 Oct 2022 18:28:11 -0300 Message-Id: <20221017212811.19616-1-eu@euandre.org> In-Reply-To: <20221017205719.5704-2-eu@euandre.org> References: <20221017205719.5704-2-eu@euandre.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=46.101.160.115; envelope-from=eu@euandre.org; helo=box.euandre.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/services/web.scm (nginx-shepherd-service): Be explicit about the reload action not changing the configuration file, but instead respawning worker processes. --- gnu/services/web.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/services/web.scm b/gnu/services/web.scm index 7fde8824b3..2023119037 100644 --- a/gnu/services/web.scm +++ b/gnu/services/web.scm @@ -819,7 +819,11 @@ (define (nginx-shepherd-service config) (list (shepherd-action (name 'reload) - (documentation "Reload NGINX configuration file and restart worker processes.") + (documentation "Reload nginx configuration file and restart worker processes. +This has the effect of killing old worker processes and starting new ones, using +the same configuration file. It is useful for situations where the same nginx +configuration file can point to different things after a reload, such as +renewed TLS certificates, or @code{include}d files.") (procedure (nginx-action "-s" "reload")))))))))) (define nginx-service-type -- 2.38.0 From unknown Sun Jun 22 00:48:58 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#58594] Acknowledgement ([PATCH 2/2] services: nginx: Improve reload action documentation.) Resent-From: EuAndreh Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 17 Oct 2022 21:44:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 58594 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 58594@debbugs.gnu.org Cc: control@debbugs.gnu.org Received: via spool by 58594-submit@debbugs.gnu.org id=B58594.16660429935835 (code B ref 58594); Mon, 17 Oct 2022 21:44:01 +0000 Received: (at 58594) by debbugs.gnu.org; 17 Oct 2022 21:43:13 +0000 Received: from localhost ([127.0.0.1]:50322 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okXtB-0001W1-31 for submit@debbugs.gnu.org; Mon, 17 Oct 2022 17:43:13 -0400 Received: from box.euandre.org ([46.101.160.115]:34723) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okXt9-0001Vj-Ea; Mon, 17 Oct 2022 17:43:12 -0400 Received: from authenticated-user (box.euandre.org [46.101.160.115]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id A5D50FC4B2; Mon, 17 Oct 2022 18:43:04 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1666042985; bh=s5G2LNIvGTLWqiZqvNlfRgB+xpyyxF6oPHYPk8AL7JQ=; h=In-Reply-To:References:Subject:From:To:Cc:Date:From; b=cTibIreivGdcOO6Rh/Jw3i+QruS9lmbZo6Th4GgZbIDi/WuMubOFWZXCxSb92CPNy AQzRoFNPpzi35DFTYio5mMqxr9I51RwMXrhcDOgvdaUTO7v0wr9odJBWjIf8icHir0 Vl592TqKLX62EO29NgXCGG2Xlg84HLUw+7BdJB2uRhPSdrPNauJ1zU6jFhrkqpN2Dt bBvHgOGn3lzEAExOHKux0YZbfgFgKb7W4beDircUXjUBV3iHUSvgXI7NeIVlPTpdDY VyZs1zCuFtKes5rvkxnbHrYZY/f+/gONcdWofOJPRYmGYSfuEh+9h/HElmAPJF+6DZ QA9QATSDiv/LA== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: References: <20221017212811.19616-1-eu@euandre.org> From: EuAndreh Date: Mon, 17 Oct 2022 18:42:57 -0300 Message-ID: <166604297796.18830.14532274621648047795@localhost> X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) close 58594 Superseded by 58590.