From c881811499b4fac5ac949dceaf24a8a197f875b8 Mon Sep 17 00:00:00 2001 From: Alexander Stein Date: Tue, 14 Apr 2026 10:51:07 +0200 Subject: [PATCH] alpine-nextcloud-install: do not use deprecated nginx config (#13726) Co-authored-by: Alexander Stein --- install/alpine-nextcloud-install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install/alpine-nextcloud-install.sh b/install/alpine-nextcloud-install.sh index 549ba9d4e..3c9eb504e 100644 --- a/install/alpine-nextcloud-install.sh +++ b/install/alpine-nextcloud-install.sh @@ -102,8 +102,9 @@ server { fastcgi_read_timeout 120s; } server { - listen 443 ssl http2; - listen [::]:443 ssl http2; + listen 443 ssl; + listen [::]:443 ssl; + http2 on; server_name localhost; root /usr/share/webapps/nextcloud; index index.php index.html index.htm;