scripts-github-mirror/lets-encrypt
tianyu 4475a0f865 update README 2016-02-12 19:46:38 +08:00
..
README-CN.md update README 2016-02-12 19:46:38 +08:00
README.md Create README.md 2015-12-22 13:28:43 +08:00
letsencrypt.conf add ecc support 2016-02-12 19:41:44 +08:00
letsencrypt.sh add ecc support 2016-02-12 19:41:44 +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