Hi @danyal14
renew
is a non-interactive command. So you can't use --manual
.
So use
certbot certonly --server https://acme-v02.api.letsencrypt.org/directory --manual --preferred-challenges dns -d 'relationmonitor.dk,*.relationmonitor.dk'
But you want a wildcard certificate, so you must use dns and the v02 -> so this command
certbot certonly --manual -d 'relationmonitor.dk,*.relationmonitor.dk'
should do the same.