Skip to content

Commit 15cdde8

Browse files
committed
Add HTTP/3 curl diagnostic info to README
1 parent 9a80eba commit 15cdde8

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,3 +156,11 @@ mysql.connector.errors.IntegrityError: 1048 (23000): Column 'author_id' cannot b
156156
- visit https://localhost:4433/users/all
157157
- visit https://localhost:4433/authors/all
158158
- visit https://localhost:4433/books/all
159+
160+
## Diagnostics
161+
162+
- HTTP/3 curl:
163+
164+
```
165+
$ docker run --rm ymuski/curl-http3 curl --http3 --verbose https://<nodeport service>:<nodeport>/healthz/ready
166+
```

hypercorn.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
accesslog = "/var/log/hypercorn/access.log"
22
errorlog = "/var/log/hypercorn/errors.log"
33
loglevel = "DEBUG"
4-
alt_svc_headers = ["h3=\":4433\"; ma=3600, h3-34=\":4433\"; ma=3600"]
4+
alt_svc_headers = ["h3=\":443\"; ma=86400"]
55
bind = ["0.0.0.0:4433"]
66
quic_bind = ["0.0.0.0:4433"]
77
insecure_bind = ["0.0.0.0:8080"]

0 commit comments

Comments
 (0)