From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH 3/3] generate ECDSA certificate and key on existing installations
Date: Sun, 24 Sep 2017 23:07:56 +0100 [thread overview]
Message-ID: <1506290876.2813.33.camel@ipfire.org> (raw)
In-Reply-To: <20170904202305.28c45ae6.peter.mueller@link38.eu>
[-- Attachment #1: Type: text/plain, Size: 1747 bytes --]
Hi,
is this not better to just call the httpscert script? Avoids copying
code.
-Michael
On Mon, 2017-09-04 at 20:23 +0200, Peter Müller wrote:
> Generate ECDSA certificate and key file on existing installations
> via the update.sh script.
>
> This is required since Apache crashes if some Certificate(Key)File
> directives point to non-existing files:
>
> Restarting Apache daemon...
> Syntax error on line 17 of /etc/httpd/conf/vhosts.d/ipfire-interface-ssl.conf:
> SSLCertificateFile: file '/etc/httpd/server-ecdsa.crt' does not exist or is empty
>
> Key generation only takes a few seconds even on legacy systems. Also
> existing installations will then use ECDSA/RSA certificate dual-stack.
>
> Signed-off-by: Peter Müller <peter.mueller(a)link38.eu>
> ---
> diff --git a/config/rootfiles/core/114/update.sh b/config/rootfiles/core/114/update.sh
> index 6d7a10b5e..c5d945b21 100644
> --- a/config/rootfiles/core/114/update.sh
> +++ b/config/rootfiles/core/114/update.sh
> @@ -60,6 +60,14 @@ rm -f /usr/sbin/htpasswd
> # Update Language cache
> /usr/local/bin/update-lang-cache
>
> +# Generate ECDSA certificate and key file to prevent Apache from crashing on existing installations
> +/usr/bin/openssl ecparam -genkey -name secp384r1 | openssl ec -out /etc/httpd/server-ecdsa.key
> +/bin/cat /etc/certparams | sed "s/HOSTNAME/`hostname -f`/" | /usr/bin/openssl \
> + req -new -key /etc/httpd/server-ecdsa.key -out /etc/httpd/server-ecdsa.csr
> +/usr/bin/openssl x509 -req -days 999999 -sha256 -in \
> + /etc/httpd/server-ecdsa.csr -signkey /etc/httpd/server-ecdsa.key -out \
> + /etc/httpd/server-ecdsa.crt
> +
> # Start services
> /etc/init.d/unbound start
> /etc/init.d/apache start
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2017-09-24 22:07 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-04 18:23 Peter Müller
2017-09-24 22:07 ` Michael Tremer [this message]
2017-09-25 16:08 ` 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=1506290876.2813.33.camel@ipfire.org \
--to=michael.tremer@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