Remove existing certificate before creating the new one

master
Carlos Mogas da Silva 6 år sedan
förälder 87c0ed086a
incheckning 3e7ecf8873
  1. 1
      haraka.sh

@ -19,6 +19,7 @@ if [ "${USE_LETSENCRYPT,,}" == "yes" -o "${USE_LETSENCRYPT,,}" == "true" ]; then
ln -sf /etc/letsencrypt/live/$HOSTNAME/fullchain.pem tls-cert.pem
else
# Generate a self-signed certificate for the hostname provided
rm -f tls-key.pem tls-cert.pem
openssl req -subj "/O=Self Signed Certificate/CN=$HOSTNAME" -new -newkey rsa:4096 -days 365 -nodes -x509 -sha256 -keyout tls-key.pem -out tls-cert.pem
fi
cd -

Laddar…
Avbryt
Spara