From 0404547f1d540b5d5d283ee271853e9462ed9861 Mon Sep 17 00:00:00 2001 From: macbre Date: Fri, 9 Aug 2024 16:02:08 +0100 Subject: [PATCH] Update nginx config to match the latest version --- test/nginx-static.conf | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/nginx-static.conf b/test/nginx-static.conf index ca2cf930..7b7ba9b0 100644 --- a/test/nginx-static.conf +++ b/test/nginx-static.conf @@ -77,7 +77,8 @@ server { server { # http/2 - listen 444 ssl http2; + listen 444 ssl; + http2 on; server_name localhost; @@ -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;