From e0dff95ddbe3be81a29478d59a52bdc0f06e5a03 Mon Sep 17 00:00:00 2001 From: LRVT <21357789+l4rm4nd@users.noreply.github.com> Date: Tue, 12 Aug 2025 22:58:57 +0200 Subject: [PATCH] chore: enable http2 for nginx --- examples/nginx-php/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/nginx-php/nginx.conf b/examples/nginx-php/nginx.conf index 72b8052..351dec0 100644 --- a/examples/nginx-php/nginx.conf +++ b/examples/nginx-php/nginx.conf @@ -1,5 +1,5 @@ server { - listen 80; + listen 80 http2; server_name nginx.example.com; root /var/www/; index index.html index.php;