help/rtfd/public/certbot/index.rst

23 lines
329 B
ReStructuredText
Raw Normal View History

2020-08-12 13:09:15 +02:00
certbot
=======
DNS certificate
---------------
.. code:: shell
mkdir tmp
2021-02-04 22:29:18 +01:00
DOMAIN='domain.tld'
certbot \
2020-08-12 13:09:15 +02:00
--config-dir tmp \
--logs-dir tmp \
--work-dir tmp \
certonly \
--agree-tos \
--manual \
--no-eff-email \
--preferred-challenges dns \
2021-02-04 21:02:17 +01:00
--csr tls.csr \
--email acme@${DOMAIN} \
--domains ${DOMAIN},*.${DOMAIN}