1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-03 00:33:55 +00:00
dockerfiles/letsencrypt/README.md

88 lines
2.1 KiB
Markdown
Raw Normal View History

2015-12-21 14:50:38 +00:00
letsencrypt
===========
[Lets Encrypt][1] is a new Certificate Authority:
Its free, automated, and open.
## docker-compose.yml
```
letsencrypt:
image: quay.io/letsencrypt/letsencrypt
command: auth
ports:
- "80:80"
- "443:443"
volumes:
2016-01-16 05:39:09 +00:00
- "./etc/letsencrypt:/etc/letsencrypt"
- "./var/lib/letsencrypt:/var/lib/letsencrypt"
2015-12-21 14:50:38 +00:00
```
## up and running
```
2016-01-16 05:39:09 +00:00
# stop nginx (release 80/tcp and 443/tcp)
2015-12-21 14:50:38 +00:00
$ systemctl stop nginx
# generate keys
$ docker-compose run --rm --service-ports letsencrypt
2016-05-01 01:06:20 +00:00
>>> email: admin@easypi.info
2016-05-06 07:03:51 +00:00
>>> domains: easypi.info,blog.easypi.info,wiki.easypi.info
2015-12-21 14:50:38 +00:00
2016-05-06 07:03:51 +00:00
# deploy keys
2015-12-21 14:50:38 +00:00
$ mkdir -p /etc/nginx/ssl/
2016-05-01 01:06:20 +00:00
$ cp ./etc/letsencrypt/live/easypi.info/fullchain.pem /etc/nginx/ssl/easypi.info.crt
$ cp ./etc/letsencrypt/live/easypi.info/privkey.pem /etc/nginx/ssl/easypi.info.key
2015-12-21 14:50:38 +00:00
# reconfig nginx
$ vi /etc/nginx/sites-enabled/default
server {
2016-01-16 05:39:09 +00:00
listen 80 default;
server_name _;
return 301 https://$host$request_uri;
2015-12-21 14:50:38 +00:00
}
server {
2016-01-16 05:39:09 +00:00
listen 443 ssl;
2016-05-01 01:06:20 +00:00
server_name easypi.info blog.easypi.info;
ssl_certificate ssl/easypi.info.crt;
ssl_certificate_key ssl/easypi.info.key;
2016-01-16 05:39:09 +00:00
location / {
proxy_pass http://127.0.0.1:8000;
}
2015-12-21 14:50:38 +00:00
}
# start nginx
$ systemctl start nginx
```
2016-05-06 07:03:51 +00:00
You can also generate keys without docker.
```bash
# install
apt install build-essential dialog libffi-dev libssl-dev python2.7-dev
curl -sSL https://bootstrap.pypa.io/get-pip.py | python2
pip2 install letsencrypt
# generate
letsencrypt certonly --standalone -d easypi.info -d blog.easypi.info -d wiki.easypi.info
# deploy
mkdir -p /etc/nginx/ssl
cp /etc/letsencrypt/live/easypi.info/fullchain.pem /etc/nginx/ssl/easypi.info.crt
cp /etc/letsencrypt/live/easypi.info/privkey.pem /etc/nginx/ssl/easypi.info.key
# renew
letsencrypt renew
```
2015-12-21 14:50:38 +00:00
## references
2016-05-06 07:03:51 +00:00
- <https://letsencrypt.readthedocs.org/en/latest/using.html#running-with-docker>
- <https://docs.docker.com/compose/reference/run/>
- <http://nginx.org/en/docs/http/configuring_https_servers.html>
2016-05-25 01:36:06 +00:00
- <https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04>
2016-05-06 07:03:51 +00:00
- <http://support.ghost.org/setup-ssl-self-hosted-ghost/>
2015-12-21 14:50:38 +00:00
[1]: https://letsencrypt.org/