Skip to content

Commit

Permalink
Update nginx config to match the latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
macbre committed Aug 9, 2024
1 parent bd796f7 commit 0404547
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions test/nginx-static.conf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ server {

server {
# http/2
listen 444 ssl http2;
listen 444 ssl;
http2 on;

server_name localhost;

Expand All @@ -94,9 +95,10 @@ server {

server {
# quic and http/3
listen 445 http3;
listen 445 quic reuseport;
# http/2 fallback
listen 445 ssl http2;
listen 445 ssl;
http2 on;

server_name localhost;

Expand Down

0 comments on commit 0404547

Please sign in to comment.