From: "Peter Müller" <peter.mueller@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/5] apache: Drop RSA key and certificate generation
Date: Fri, 20 Sep 2024 14:20:19 +0000 [thread overview]
Message-ID: <20240920142022.589371-2-peter.mueller@ipfire.org> (raw)
In-Reply-To: <20240920142022.589371-1-peter.mueller@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 2519 bytes --]
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/initscripts/system/apache | 26 +-------------------------
1 file changed, 1 insertion(+), 25 deletions(-)
diff --git a/src/initscripts/system/apache b/src/initscripts/system/apache
index e7a62097e..ba7ede670 100644
--- a/src/initscripts/system/apache
+++ b/src/initscripts/system/apache
@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2022 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2024 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -25,13 +25,6 @@
PIDFILE="/var/run/httpd.pid"
generate_certificates() {
- if [ ! -f "/etc/httpd/server.key" ]; then
- boot_mesg "Generating HTTPS RSA server key (this will take a moment)..."
- openssl genrsa -out /etc/httpd/server.key 4096 &>/dev/null
- chmod 600 /etc/httpd/server.key
- evaluate_retval
- fi
-
if [ ! -f "/etc/httpd/server-ecdsa.key" ]; then
boot_mesg "Generating HTTPS ECDSA server key..."
openssl ecparam -genkey -name secp384r1 -noout \
@@ -40,29 +33,12 @@ generate_certificates() {
evaluate_retval
fi
- # Generate RSA CSR
- if [ ! -f "/etc/httpd/server.csr" ]; then
- sed "s/HOSTNAME/`hostname -f`/" < /etc/certparams | \
- openssl req -new -key /etc/httpd/server.key \
- -out /etc/httpd/server.csr &>/dev/null
- fi
-
- # Generate ECDSA CSR
if [ ! -f "/etc/httpd/server-ecdsa.csr" ]; then
sed "s/HOSTNAME/`hostname -f`/" < /etc/certparams | \
openssl req -new -key /etc/httpd/server-ecdsa.key \
-out /etc/httpd/server-ecdsa.csr &>/dev/null
fi
- if [ ! -f "/etc/httpd/server.crt" ]; then
- boot_mesg "Signing RSA certificate..."
- openssl x509 -req -days 999999 -sha256 \
- -in /etc/httpd/server.csr \
- -signkey /etc/httpd/server.key \
- -out /etc/httpd/server.crt &>/dev/null
- evaluate_retval
- fi
-
if [ ! -f "/etc/httpd/server-ecdsa.crt" ]; then
boot_mesg "Signing ECDSA certificate..."
openssl x509 -req -days 999999 -sha256 \
--
2.39.5
next prev parent reply other threads:[~2024-09-20 14:20 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-20 14:20 [PATCH 1/5] sshd: Do not generate new RSA host key on first boot Peter Müller
2024-09-20 14:20 ` Peter Müller [this message]
2024-09-20 14:20 ` [PATCH 3/5] sshd_config: Drop RSA key Peter Müller
2024-09-20 14:20 ` [PATCH 4/5] Drop RSA key and certificate from HTTPS configuration Peter Müller
2024-09-20 14:20 ` [PATCH 5/5] backup: No longer save RSA keys Peter Müller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240920142022.589371-2-peter.mueller@ipfire.org \
--to=peter.mueller@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox