1
0
mirror of https://github.com/wmnnd/nginx-certbot synced 2023-04-20 18:47:46 +08:00
nginx-certbot/README.md

34 lines
1.3 KiB
Markdown
Raw Normal View History

2018-09-28 10:50:48 +02:00
# Boilerplate for nginx with Lets Encrypt on docker-compose
2019-01-01 22:40:20 +01:00
> This repository is accompanied by a [step-by-step guide on how to
set up nginx and Lets Encrypt with Docker](https://medium.com/@pentacent/nginx-and-lets-encrypt-with-docker-in-less-than-5-minutes-b4b8a60d3a71).
`init-letsencrypt.sh` fetches and ensures the renewal of a Lets
Encrypt certificate for one or multiple domains in a docker-compose
setup with nginx.
2019-01-01 22:40:20 +01:00
This is useful when you need to set up nginx as a reverse proxy for an
application.
2018-09-28 10:50:48 +02:00
## Installation
1. [Install docker-compose](https://docs.docker.com/compose/install/#install-compose).
2018-09-28 10:50:48 +02:00
2. Clone this repository: `git clone https://github.com/wmnnd/nginx-certbot.git .`
3. Modify configuration:
- Add domains and email addresses to init-letsencrypt.sh
- Replace all occurrences of example.org with primary domain (the first one you added to init-letsencrypt.sh) in data/nginx/app.conf
4. Run the init script:
./init-letsencrypt.sh
5. Run the server:
docker-compose up
2018-09-28 10:50:48 +02:00
## Got questions?
Feel free to post questions in the comment section of the [accompanying guide](https://medium.com/@pentacent/nginx-and-lets-encrypt-with-docker-in-less-than-5-minutes-b4b8a60d3a71)
## License
All code in this repository is licensed under the terms of the `MIT License`. For further information please refer to the `LICENSE` file.