Skip to main content
Version: 5.2

SSL

Removing Old & Generating New

Make sure the acme client is up to date

acme.sh --upgrade
info

replace DOMAIN.COM with your own domain.

Remove the old certificate

acme.sh --remove -d DOMAIN.COM

Issue a new certificate

acme.sh --issue \
--webroot /opt/virtfusion/nginx/acme \
--keylength 4096 \
--server letsencrypt \
-d DOMAIN.COM
acme.sh --installcert \
--keypath /opt/virtfusion/ssl/ssl.key \
--fullchainpath /opt/virtfusion/ssl/ssl.crt \
--reloadcmd "systemctl reload vf-nginx" \
-d DOMAIN.COM