Difference between revisions of "Certbot"

From HyperSecurity Wiki
Jump to: navigation, search
Line 6: Line 6:
 
Modifying Cert:
 
Modifying Cert:
 
  certbot certonly --cert-name example.com -d example.com,mail.example.org,www.example.org,ns1.example.org
 
  certbot certonly --cert-name example.com -d example.com,mail.example.org,www.example.org,ns1.example.org
 +
 +
List Certs:
 +
certbot certificates
  
 
'''Links:'''
 
'''Links:'''
 
*[https://certbot.eff.org/lets-encrypt/debianstretch-apacheg How to install certbot]
 
*[https://certbot.eff.org/lets-encrypt/debianstretch-apacheg How to install certbot]
 
*[https://certbot.eff.org/docs/using.html#changing-a-certificate-s-domains How to modify domains]
 
*[https://certbot.eff.org/docs/using.html#changing-a-certificate-s-domains How to modify domains]
 
 
List Certs:
 
certbot certificates
 

Revision as of 16:43, 17 August 2018

Commands:

Creating Certs:

certbot certonly --authenticator standalone --pre-hook "apachectl -k stop" --post-hook "apachectl -k start"

Modifying Cert:

certbot certonly --cert-name example.com -d example.com,mail.example.org,www.example.org,ns1.example.org

List Certs:

certbot certificates

Links: