0 0 * * 0 docker compose -f /opt/docker/nginx/docker-compose-le.yaml up && docker exec nginx-service nginx -s reload
Last active
November 18, 2023 14:07
-
-
Save QNimbus/0b3a66c3eddb86a701d96b4c3bd61bc6 to your computer and use it in GitHub Desktop.
Docker + Nginx reverse proxy + LetsEncrypt + Chisel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.8' | |
services: | |
letsencrypt: | |
container_name: certbot-service | |
image: certbot/certbot:latest | |
command: 'sh -c "certbot certonly --expand --webroot -w /tmp/acme_challenge -d <DOMAIN_NAME> --text --agree-tos --email <EMAIL> --rsa-key-size 4096 --verbose --keep-until-expiring --preferred-challenges=http"' | |
entrypoint: '' | |
volumes: | |
- type: bind | |
source: /opt/docker/nginx/le | |
target: /etc/letsencrypt | |
read_only: false | |
- type: bind | |
source: /opt/docker/nginx/tmp/acme_challenge | |
target: /tmp/acme_challenge | |
read_only: false | |
environment: | |
- TERM=xterm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.8' | |
services: | |
nginx: | |
container_name: nginx-service | |
image: nginx:latest | |
restart: unless-stopped | |
volumes: | |
- type: bind | |
source: /opt/docker/nginx/conf/nginx.conf | |
target: /etc/nginx/nginx.conf | |
read_only: true | |
- type: bind | |
source: /opt/docker/nginx/conf/conf.d | |
target: /etc/nginx/conf.d | |
read_only: true | |
- type: bind | |
source: /opt/docker/nginx/le | |
target: /etc/letsencrypt | |
read_only: true | |
- type: bind | |
source: /opt/docker/nginx/certs | |
target: /etc/nginx/certs | |
read_only: true | |
- type: bind | |
source: /opt/docker/nginx/tmp/acme_challenge | |
target: /tmp/acme_challenge | |
read_only: true | |
networks: | |
- chisel | |
ports: | |
- 80:80 | |
- 443:443 | |
environment: [] | |
chisel: | |
container_name: chisel-service | |
image: jpillora/chisel | |
restart: unless-stopped | |
volumes: | |
- type: bind | |
source: /opt/docker/nginx/chisel/data | |
target: /data | |
read_only: true | |
- type: bind | |
source: /opt/docker/nginx/chisel/.cache | |
target: /.cache | |
read_only: false | |
networks: | |
- chisel | |
ports: | |
- 2334:2334 | |
environment: | |
- CHISEL_LE_CACHE=/.cache | |
command: | |
- 'server' | |
- '--keyfile=/data/key' | |
- '--authfile=/data/users.json' | |
- '--port=2334' | |
- '--reverse' | |
networks: | |
chisel: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment