From 8a5a56dc5014cff01ece4195600d5d99ec281935 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Thu, 1 May 2025 14:14:30 -0400 Subject: [PATCH] !LOCAL Enable HTTP2 for faster load times --- nginx/nginx.conf.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx/nginx.conf.template b/nginx/nginx.conf.template index ed0d0ba..32fd22d 100644 --- a/nginx/nginx.conf.template +++ b/nginx/nginx.conf.template @@ -13,8 +13,8 @@ http { } server { - listen 80; - listen [::]:80; + listen 80 http2; + listen [::]:80 http2; # INFO: Set this to your domain server_name ${NEXTCLOUD_DOMAIN};