Skip to content

Instantly share code, notes, and snippets.

@icereed
icereed / docker-compose.yml
Last active June 25, 2021 08:41
Dynamic HTTPS + HTTP forwarder for NGINX
version: "3.2"
services:
web:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
ports:
- "80:80"
- "443:443"