diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | create-ssl-certificate | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ + * default to 4096 bit SSL certificates (mga#27359) + 2020-07-24 Olav Vitters <ovitters@mageia.org 0.24.18 * correctly check if systemd has booted * show project as Mageia instead of Mandriva diff --git a/create-ssl-certificate b/create-ssl-certificate index a0d7352..398470a 100755 --- a/create-ssl-certificate +++ b/create-ssl-certificate @@ -22,7 +22,7 @@ fi if [ ! -f "/etc/pki/tls/private/$srv.pem" ]; then # default values host=$(hostname) - KEY_LENGTH=2048 + KEY_LENGTH=4096 CERT_DAYS=365 EMAIL_ADDRESS=root@$host COMMON_NAME=$host |