Compare commits

...

3 Commits

Author SHA1 Message Date
Marc Beninca 409154483a certbot/domain 2021-02-04 22:29:18 +01:00
Marc Beninca 901ba04eb9 certbot/update 2021-02-04 21:02:17 +01:00
Marc Beninca 576d81da2f certbot/csr 2020-11-07 21:33:20 +01:00
1 changed files with 4 additions and 4 deletions

View File

@ -7,6 +7,7 @@ DNS certificate
.. code:: shell .. code:: shell
mkdir tmp mkdir tmp
DOMAIN='domain.tld'
certbot \ certbot \
--config-dir tmp \ --config-dir tmp \
--logs-dir tmp \ --logs-dir tmp \
@ -14,9 +15,8 @@ DNS certificate
certonly \ certonly \
--agree-tos \ --agree-tos \
--manual \ --manual \
--manual-public-ip-logging-ok \
--no-eff-email \ --no-eff-email \
--preferred-challenges dns \ --preferred-challenges dns \
--email acme@domain.tld \ --csr tls.csr \
--domains domain.tld,*.domain.tld \ --email acme@${DOMAIN} \
--csr file.csr --domains ${DOMAIN},*.${DOMAIN}