Letsencrypt: Difference between revisions

From DWIKI
mNo edit summary
Line 9: Line 9:
*[https://certbot.eff.org/instructions Certbot instructions]
*[https://certbot.eff.org/instructions Certbot instructions]


= FAQ =
=HOWTO=
==Disable auto renewal==
Rename renewal file'
/etc/letsencrypt/renewal/example.com.conf.disabled
or in '''/etc/letsencrypt/renewal/example.com.conf''' under '''[renewalparams]''' add:
autorenew = False


== Update cert(s) ==
== Update cert(s) ==
Line 21: Line 26:
  certbot --apache -d example.com -d www.example.com
  certbot --apache -d example.com -d www.example.com


= FAQ =


==This website does not supply ownership information.==
==This website does not supply ownership information.==
Line 29: Line 36:
Maybe you're using SNI, try
Maybe you're using SNI, try
  certbot --apache -d "www.example.com,example"
  certbot --apache -d "www.example.com,example"
==Disable autorenew for a domain==
In '''/etc/letsencrypt/renewal/example.com.conf''' under '''[renewalparams]''' add:
autorenew = False

Revision as of 12:23, 13 December 2023

Free SSL certificates

 

Links

HOWTO

Disable auto renewal

Rename renewal file'

/etc/letsencrypt/renewal/example.com.conf.disabled

or in /etc/letsencrypt/renewal/example.com.conf under [renewalparams] add:

autorenew = False

Update cert(s)

certbot

Remove certs/domain

certbot delete --cert-name www.example.com

With and without www

certbot --apache -d example.com -d www.example.com


FAQ

This website does not supply ownership information.

sod that


archive directory exists

Maybe you're using SNI, try

certbot --apache -d "www.example.com,example"