https://github.com/ureuzy/nginx-http3
Nginx http3 quic on Docker
https://github.com/ureuzy/nginx-http3
docker docker-image http3-server nginx
Last synced: 5 months ago
JSON representation
Nginx http3 quic on Docker
- Host: GitHub
- URL: https://github.com/ureuzy/nginx-http3
- Owner: ureuzy
- Created: 2022-01-26T06:36:36.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-09T02:47:23.000Z (over 3 years ago)
- Last Synced: 2025-04-17T12:31:40.079Z (10 months ago)
- Topics: docker, docker-image, http3-server, nginx
- Language: Dockerfile
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker nginx-http3
Note:
http3 quick uses udp to communicate, so open the udp port. Also, if you do not provide a certificate, a self-certificate will be used, but this may not result in http3 communication with some browsers, etc.
public image
```
docker run -p 8443:8443/tcp -p 443:443/udp -v $(pwd)/nginx.conf:/etc/nginx/nginx.conf -v $(pwd)/certs:/etc/nginx/certs --rm -it ureuzy/nginx-http3:latest
```
self build
```
git clone https://github.com/ureuzy/nginx-http3.git
cd nginx-http3
docker build . -t nginx-http3:latest
docker run -p 8443:8443/tcp -p 443:443/udp -v $(pwd)/nginx.conf:/etc/nginx/nginx.conf -v $(pwd)/certs:/etc/nginx/certs --rm -it nginx-http3:latest
```
# Ref
https://boringssl.googlesource.com/boringssl/+/HEAD/BUILDING.md
https://quic.nginx.org/readme.html