Sto semplicemente cercando di aggiungere il dominio test.example.com
al certificato già esistente per example.com
. Come aggiungo un dominio al mio certificato esistente e sostituisco il vecchio certificato?
Ho provato questi pochi comandi
./letsencrypt-auto certonly --cert-path /etc/letsencrypt/archive/example.com --expand -d test.example.com
./letsencrypt-auto certonly -d example.com --expand -d test.example.com
Risultato: entrambi hanno creato un nuovo certificato in una nuova cartella test.example.com-0001
./letsencrypt-auto certonly --renew-by-default --expand -d test.example.com
Risultato: la cartella degli errori test.example.com esiste già.
./letsencrypt-auto renew --expand -d orange.fidka.com
Risultato: errore, posso rinnovare solo se il mio certificato è scaduto.
certbot --expand
che è più vicino a ciò che questa domanda sta chiedendo imo