20 lines
429 B
YAML
20 lines
429 B
YAML
version: '3'
|
|
|
|
services:
|
|
http3-proxy:
|
|
build: .
|
|
ports:
|
|
- "8443:8443/udp"
|
|
- "8443:8443/tcp"
|
|
volumes:
|
|
- ./cert.pem:/app/cert.pem
|
|
- ./key.pem:/app/key.pem
|
|
command: [
|
|
"fuckhttp3",
|
|
"--addr=0.0.0.0:8443",
|
|
"--cert=/app/cert.pem",
|
|
"--key=/app/key.pem",
|
|
"--verbose"
|
|
]
|
|
# Add target parameter if you want to use as reverse proxy
|
|
# "--target=example.com:443" |