From edbc050f43433fd9916dfacc6491d870e2dfe92b Mon Sep 17 00:00:00 2001 From: Theodore Keloglou Date: Wed, 17 Sep 2025 12:12:21 +0100 Subject: [PATCH] Change nginx listen http2 deprecated directive --- dist/nginx.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dist/nginx.conf b/dist/nginx.conf index 8b7c68d2872..0d857942053 100644 --- a/dist/nginx.conf +++ b/dist/nginx.conf @@ -31,8 +31,9 @@ server { } server { - listen 443 ssl http2; - listen [::]:443 ssl http2; + listen 443 ssl; + listen [::]:443 ssl; + http2 on; server_name example.com; ssl_protocols TLSv1.2 TLSv1.3;