From unknown Sun Sep 07 00:05:48 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#58595] [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:34:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 58595 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 58595@debbugs.gnu.org Cc: EuAndreh X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16660424324863 (code B ref -1); Mon, 17 Oct 2022 21:34:01 +0000 Received: (at submit) by debbugs.gnu.org; 17 Oct 2022 21:33:52 +0000 Received: from localhost ([127.0.0.1]:50310 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okXk8-0001GN-0O for submit@debbugs.gnu.org; Mon, 17 Oct 2022 17:33:52 -0400 Received: from lists.gnu.org ([209.51.188.17]:56576) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okXk6-0001GG-Tm for submit@debbugs.gnu.org; Mon, 17 Oct 2022 17:33:51 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:57714) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1okXjr-0002HR-DZ for guix-patches@gnu.org; Mon, 17 Oct 2022 17:33:47 -0400 Received: from box.euandre.org ([46.101.160.115]:34037) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1okXjp-0005iG-O9 for guix-patches@gnu.org; Mon, 17 Oct 2022 17:33:35 -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 36176FC4B2; Mon, 17 Oct 2022 18:33:29 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1666042411; bh=e4+322WglTfOegGau1vXZi3nhd49MVxvFewJhpcBIpw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=aPlB9UKmgJJdTtX+DehyEMTqx5aMO7rycS6ZQb5Newb/u+Zqv9x2EhyZa+6UO7LAH NFQfJraeMa9schThmUdEZHq0w+cFU6wkSc8RUm3CAuxOkt2ZnoZTifKR+1a224UQHt CR3s5pZh8rqshusqut3rEyq2eRa4kBNRFr91p3Xce55+DrPt3XewDb16jtR9UZi3jI mTFZpjrGEiBf3Qt65fBjYJ2s9CPsXMiNCZf96Z8tz5AtNFp1XjX/4ejyAzf8V0FRrR ySJYWoe1hdfGoDP0PeevyJ3VkFh7lSb2UH3HCEj+cJvy9M7yMi1ro5vlmQpU7ehFP1 LifJPb8FnT4Wg== From: EuAndreh Date: Mon, 17 Oct 2022 18:33:25 -0300 Message-Id: <20221017213325.29154-1-eu@euandre.org> In-Reply-To: <58590@debbugs.gnu.org> References: <58590@debbugs.gnu.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. --- Correct placement of the second patch. I'll close the other bugs opened when I replied to my own email, instead of debbugs' email. 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 Sep 07 00:05:48 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#58595] 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:51:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 58595 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 58595@debbugs.gnu.org Cc: control@debbugs.gnu.org Received: via spool by 58595-submit@debbugs.gnu.org id=B58595.166604342315199 (code B ref 58595); Mon, 17 Oct 2022 21:51:02 +0000 Received: (at 58595) by debbugs.gnu.org; 17 Oct 2022 21:50:23 +0000 Received: from localhost ([127.0.0.1]:50351 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okY07-0003x4-HQ for submit@debbugs.gnu.org; Mon, 17 Oct 2022 17:50:23 -0400 Received: from box.euandre.org ([46.101.160.115]:37685) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okY05-0003wa-6S; Mon, 17 Oct 2022 17:50:21 -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 E877BFC4B2; Mon, 17 Oct 2022 18:50:14 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1666043415; bh=Luyrl3tT8PrG6ZEl3qfDbiWBfDeAFVxbtnij1zgwhPQ=; h=In-Reply-To:References:Subject:From:To:Cc:Date:From; b=GGi+MrflwG6AaWw5YKkXgMvlmzSKOXqS3QxDbZnxisSgQn+ZqMIP83zSVB4eLxOKn p2dhTj7wTjt7gSE6PnVWWxceUenXhfoNKLO2+O/NLySVhh+OTWIX15scXDBCnCLb0f 0oB79E3g3GAgcN+82+59vTUAgw+3SPS1hpozPY8Fo4M1un5PMVz/HMl8+LDgQ0UQ/G S5UJ3evZn71YiFbODzYo1z+GI2IUA2bqSbQA9fQrZh8qje9iY5n5JwvgvkN6HW+jXA sWq7KEkveYqocTFKqSWwmo+ZAm/K98aha3v5sN2pjAFZiv1kDeq+tLyRwF1G8ud81O P0VzcqrEUPdLQ== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: References: <20221017213325.29154-1-eu@euandre.org> From: EuAndreh Date: Mon, 17 Oct 2022 18:50:10 -0300 Message-ID: <166604341024.23569.10307676477541048847@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 58595 Superseded by 58590.