A simple NGINX Docker image compiled with QuicTLS.
- QuicTLS
- HTTP/3 QUIC and 0-RTT support
- Dynamic TLS records patch support
- Brotli support
- GeoIP2 support
- NJS support
- ModSecurity support
To deploy this docker image run
docker run -d --restart unless-stopped -p 80:80 -p 443:443 -p 443:443/udp -v ./nginx-config:/etc/nginx benedicthu/nginx-quictls
Docker-Compose
version: '3.9'
services:
nginx-quictls:
image: benedicthu/nginx-quictls
volumes:
- './nginx-config:/etc/nginx'
ports:
- '443:443/udp'
- '443:443'
- '80:80'
restart: unless-stopped