Create README.md

This commit is contained in:
tianyu 2015-12-22 13:28:43 +08:00
parent cee2ec9261
commit 3af0f37e54
1 changed files with 43 additions and 0 deletions
lets-encrypt

43
lets-encrypt/README.md Normal file
View File

@ -0,0 +1,43 @@
A shell script to get/update Let's encrypt certs quickly. [中文](https://github.com/xdtianyu/scripts/blob/master/lets-encrypt/README-CN.md)
------------
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.com`that 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
```