scripts-github-mirror/lets-encrypt
winter bc7017f57e Update README-CN.md 2017-05-29 22:39:18 +08:00
..
README-CN.md Update README-CN.md 2017-05-29 22:39:18 +08:00
README.md Create README.md 2015-12-22 13:28:43 +08:00
letsencrypt.conf Update letsencrypt.conf 2016-02-19 17:11:17 +08:00
letsencrypt.sh little change on wget 2017-04-13 11:25:15 +08:00

README.md

A shell script to get/update Let's encrypt certs quickly. 中文

This script uses acme_tiny.py to auth, fetch and update certno need for other dependency.

Download

wget https://raw.githubusercontent.com/xdtianyu/scripts/master/lets-encrypt/letsencrypt.conf
wget https://raw.githubusercontent.com/xdtianyu/scripts/master/lets-encrypt/letsencrypt.sh
chmod +x letsencrypt.sh

Configuration

Only modify DOMAIN_KEY DOMAIN_DIR DOMAINS to yours.

ACCOUNT_KEY="letsencrypt-account.key"
DOMAIN_KEY="example.com.key"
DOMAIN_DIR="/var/www/example.com"
DOMAINS="DNS:example.com,DNS:whatever.example.com"

key files will be gererated automatically.

Run

./letsencrypt.sh letsencrypt.conf

Attention

Domain name need bind to DOMAIN_DIR e.g. /var/www/example.comthat is to say visit http://example.com http://whatever.example.com can get into /var/www/example.com directorythis is used to verify your domain.

cron task

Update the certs every monthyou can add your command to the end of script to reload your service, e.g. service nginx reload

0 0 1 * * /etc/nginx/certs/letsencrypt.sh /etc/nginx/certs/letsencrypt.conf >> /var/log/lets-encrypt.log 2>&1