I’m attempting to setup an automated process based on the --manual plugin since my servers exist in multiple hosts and we use docker extensively.
My issue at the moment is how to get the acme-challenge codes in an non-interactive manner. I would like to script something like:
$ letsencrypt -d mydomain.com -d mydomain2.com --manual --get-challenge
that would return the challenge for each domain, I would parse and setup it as I desire, and then invoke:
$ letsencrypt -d mydomain.com -d mydomain2.com --manual --check-challenge
and it would validate all the domains.
Also, where do I get a list of all cli options available? I know from examples of flags like “–email” or “–agree-tos” but I can’t find a complete list, for example I would love to skip the “your IP will be logged” dialog.