meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
sw:certbot [2020/07/10 13:04] niziaksw:certbot [2020/07/10 13:11] (current) niziak
Line 10: Line 10:
  
 ===== obtain wildcard cert ===== ===== obtain wildcard cert =====
 +
 <code bash> <code bash>
 +# First obtain normal domain certificate
 +certbot -d 'example.com'
 +
 +# Then obtain again with wildcard. It will ask to Expand existing cert.
 certbot -d 'example.com,*.example.com' certbot -d 'example.com,*.example.com'
 </code> </code>