Originally I tried getting a single domain running with certbot using the following command:
certbot certonly --webroot -w /data/web/www.example.com -d www.example.com
This stored the certificates in /etc/letsencrypt/live/www.example.com/
Now I would like to add a couple subdomains but I would like to have the certificates stored in /etc/letsencrypt/live/example.com/. So I ran the following command:
certbot certonly --webroot -w /data/web/www.example.com -d example.com -d www.example.com -d site2.example.com -d site3.example.com
But, when I chose “Expand”, it put the new certificates in /etc/letsencrypt/live/www.example.com instead of where I wanted.
What is the proper way to move/re-issue them so they are stored in the desired location?
Thanks