Site Tools


linux:ubuntu:certbot

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
linux:ubuntu:certbot [2018/01/08 09:47] lunetikklinux:ubuntu:certbot [2018/06/03 04:41] lunetikk
Line 3: Line 3:
  
 ===== Installation ===== ===== Installation =====
- 
-[[https://gist.github.com/cecilemuller/a26737699a7e70a7093d4dc115915de8]] 
  
 <code> <code>
Line 16: Line 14:
  
 ==== nginx ==== ==== nginx ====
 +
 +Good guide for nginx config and cronjob for auto renew\\
 +[[https://gist.github.com/cecilemuller/a26737699a7e70a7093d4dc115915de8]]
 +
  
 Create "/etc/nginx/letsencrypt/letsencrypt.conf" with the following Create "/etc/nginx/letsencrypt/letsencrypt.conf" with the following
Line 42: Line 44:
 </code> </code>
  
 +==== nginx ==== 
 +Add to your vhost config
 +<code>
 +ssl_certificate /etc/letsencrypt/live/lunetikk.de/fullchain.pem;
 +ssl_certificate_key /etc/letsencrypt/live/lunetikk.de/privkey.pem;
 +ssl_trusted_certificate /etc/letsencrypt/live/lunetikk.de/fullchain.pem;
 +</code>
 +
 +==== apache2 ==== 
 Add to your vhost config Add to your vhost config
 <code> <code>
Line 52: Line 63:
  
 ^  Command  ^  Function  ^ ^  Command  ^  Function  ^
-|  certbot certonly --webroot --agree-tos --no-eff-email --email <mail> -w /usr/local/nginx/html/letsencrypt -d <www.domain.de> -d <domain.de>  |  Obtain or renew a certificate  |+|  %%certbot certonly --webroot --agree-tos --no-eff-email --email <mail> -w /usr/local/nginx/html/letsencrypt -d <www.domain.de> -d <domain.de>%%   Obtain or renew a certificate  |
 |  certbot  renew  |  Renew all previously obtained certificates that are near expiry  | |  certbot  renew  |  Renew all previously obtained certificates that are near expiry  |
-|  certbot certonly --dry-run  |  Test "renew" or "certonly" without saving any certificates to disk  |+|  %%certbot certonly --dry-run%%   Test "renew" or "certonly" without saving any certificates to disk  |
 |  certbot certificates  |  Display information about certificates you have from Certbot  | |  certbot certificates  |  Display information about certificates you have from Certbot  |
 |  certbot revoke  |  Revoke a certificate (supply --cert-path)  | |  certbot revoke  |  Revoke a certificate (supply --cert-path)  |
 |  certbot delete  |  Delete a certificate  | |  certbot delete  |  Delete a certificate  |
  
linux/ubuntu/certbot.txt · Last modified: 2018/12/13 09:28 by lunetikk