I have everything installed correctly and have followed the tutorial here:
I have also downloaded the DigitalOcean DNS plugin.
Currently the only thing I can do is run sudo certbot
, in which it just looks at my virtual hosts and asks me which domain I want to install an SSL for.
How can I do this for a Wildcard however?
It would make sense to follow this tutorial:
https://certbot-dns-digitalocean.readthedocs.io/en/stable/
However, that just returns the following error:
My Command
certbot certonly \ --dns-digitalocean \ --dns-digitalocean-credentials ~/.secrets/certbot/digitalocean.ini \ --dns-digitalocean-propagation-seconds 60 \ -d *.example.com
Error
certbot: error: unrecognized arguments: --dns-digitalocean --dns-digitalocean-credentials /home/hello/.secrets/certbot/digitalocean.ini --dns-digitalocean-propagation-seconds 60 -d *.example.com
How could I get this to work?
I have the .ini
files and everything set up, I've run this on another server with the exact same setup (but have just forgotten the Certbot command used for wildcards - tutorial does not work).
I am using NGINX with Ubuntu 20.04
Thanks!