From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id CB6F21FF13B for ; Wed, 22 Apr 2026 14:40:43 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 15BA71DB0F; Wed, 22 Apr 2026 14:40:41 +0200 (CEST) From: Shannon Sterz To: pbs-devel@lists.proxmox.com Subject: [PATCH datacenter-manager 12/12] docs/certificates: use correct certificate file name Date: Wed, 22 Apr 2026 14:40:22 +0200 Message-ID: <20260422124022.17952-13-s.sterz@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260422124022.17952-1-s.sterz@proxmox.com> References: <20260422124022.17952-1-s.sterz@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1776861542133 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.122 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: 4ORJVINO2LGLC4MVLCYIMTFYN5CMPQ4X X-Message-ID-Hash: 4ORJVINO2LGLC4MVLCYIMTFYN5CMPQ4X X-MailFrom: s.sterz@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox Backup Server development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: instead of the hard-coded `proxy.pem` that is inaccurate by now. Signed-off-by: Shannon Sterz --- docs/certificate-management.rst | 5 +++-- server/src/api/nodes/certificates.rs | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/certificate-management.rst b/docs/certificate-management.rst index 680d8af..0a53b1d 100644 --- a/docs/certificate-management.rst +++ b/docs/certificate-management.rst @@ -320,8 +320,9 @@ logged: Apr 04 12:17:51 pdm proxmox-datacenter-manager-daily-update[1170]: Self-signed certificate is valid for an excessive amount of time. Please renew it. To manually renew a certificate, navigate to Configuration -> Certificates. -Select the certificate ``proxy.pem``. Then click the "Delete Custom -Certificate" button. Alternatively, you can run the following command: +Select the certificate ``/etc/proxmox-datacenter-manager/auth/api.pem``. Then +click the "Delete Custom Certificate" button. Alternatively, you can run the +following command: .. code-block:: shell diff --git a/server/src/api/nodes/certificates.rs b/server/src/api/nodes/certificates.rs index 3b43f2e..a5ad510 100644 --- a/server/src/api/nodes/certificates.rs +++ b/server/src/api/nodes/certificates.rs @@ -61,7 +61,7 @@ fn get_certificate_pem() -> Result, Error> { fn get_certificate_info() -> Result { let cert_pem = get_certificate_pem()?; - CertificateInfo::from_pem("proxy.pem", &cert_pem) + CertificateInfo::from_pem(API_CERT_FN, &cert_pem) } #[api( -- 2.47.3