Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:

Expand Down Expand Up @@ -60,7 +59,7 @@ jobs:

grep --fixed-strings '< HTTP/3 200' /tmp/h3
grep --fixed-strings '< server: nginx' /tmp/h3
grep --fixed-strings '< alt-svc: h3=":8889"; ma=86400' /tmp/h3
grep --fixed-strings '< alt-svc: h3-27=":8889"; ma=86400, h3-28=":8889"; ma=86400, h3-29=":8889"; ma=86400' /tmp/h3
grep --fixed-strings '<p>It works!</p>' /tmp/h3

docker logs test_nginx
2 changes: 1 addition & 1 deletion tests/https.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ server {
ssl_early_data on;

# Add Alt-Svc header to negotiate HTTP/3.
add_header alt-svc 'h3=":8889"; ma=86400';
add_header alt-svc 'h3-27=":8889"; ma=86400, h3-28=":8889"; ma=86400, h3-29=":8889"; ma=86400';

location / {
root /static;
Expand Down