certbot
This commit is contained in:
parent
f72d8a4686
commit
3d94293a13
2 changed files with 23 additions and 0 deletions
|
@ -12,6 +12,7 @@ RTFD
|
||||||
public/bcompare/index
|
public/bcompare/index
|
||||||
public/bind9/index
|
public/bind9/index
|
||||||
public/c/index
|
public/c/index
|
||||||
|
public/certbot/index
|
||||||
public/connect/index
|
public/connect/index
|
||||||
public/coreutils/index
|
public/coreutils/index
|
||||||
public/curl/index
|
public/curl/index
|
||||||
|
|
22
docs/public/certbot/index.rst
Normal file
22
docs/public/certbot/index.rst
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
certbot
|
||||||
|
=======
|
||||||
|
|
||||||
|
DNS certificate
|
||||||
|
---------------
|
||||||
|
|
||||||
|
.. code:: shell
|
||||||
|
|
||||||
|
mkdir tmp
|
||||||
|
certbot \
|
||||||
|
--config-dir tmp \
|
||||||
|
--logs-dir tmp \
|
||||||
|
--work-dir tmp \
|
||||||
|
certonly \
|
||||||
|
--agree-tos \
|
||||||
|
--manual \
|
||||||
|
--manual-public-ip-logging-ok \
|
||||||
|
--no-eff-email \
|
||||||
|
--preferred-challenges dns \
|
||||||
|
--email acme@domain.tld \
|
||||||
|
--domains domain.tld,*.domain.tld \
|
||||||
|
--csr file.csr
|
Loading…
Reference in a new issue