From 5e976df502e3065d73d14a5598a19f77c0b0dfd7 Mon Sep 17 00:00:00 2001 From: Istvan Berenyi <39776299+istvan-berenyi@users.noreply.github.com> Date: Tue, 10 Sep 2024 19:01:27 +0100 Subject: [PATCH 1/4] Update nginx-root.conf.sample Updated Nginx root conf file with new formatting of http2 Signed-off-by: Istvan Berenyi <39776299+istvan-berenyi@users.noreply.github.com> --- admin_manual/installation/nginx-root.conf.sample | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/admin_manual/installation/nginx-root.conf.sample b/admin_manual/installation/nginx-root.conf.sample index 550364749..ba8643db3 100644 --- a/admin_manual/installation/nginx-root.conf.sample +++ b/admin_manual/installation/nginx-root.conf.sample @@ -22,8 +22,10 @@ server { } server { - listen 443 ssl http2; - listen [::]:443 ssl http2; + listen 443 ssl; + http2 on; + listen [::]:443 ssl; + http2 on; server_name cloud.example.com; # Path to the root of your installation From 84410d1ced04ac84b3ec1694968cc007e7b8dca3 Mon Sep 17 00:00:00 2001 From: Istvan Berenyi <39776299+istvan-berenyi@users.noreply.github.com> Date: Tue, 10 Sep 2024 19:02:36 +0100 Subject: [PATCH 2/4] Update nginx-subdir.conf.sample Updated Nginx subdir conf file with new formatting of http2 Signed-off-by: Istvan Berenyi <39776299+istvan-berenyi@users.noreply.github.com> --- admin_manual/installation/nginx-subdir.conf.sample | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/admin_manual/installation/nginx-subdir.conf.sample b/admin_manual/installation/nginx-subdir.conf.sample index da9b56d48..4ac313df5 100644 --- a/admin_manual/installation/nginx-subdir.conf.sample +++ b/admin_manual/installation/nginx-subdir.conf.sample @@ -24,8 +24,10 @@ server { } server { - listen 443 ssl http2; - listen [::]:443 ssl http2; + listen 443 ssl; + http2 on; + listen [::]:443 ssl; + http2 on; server_name cloud.example.com; # Path to the root of the domain From 413b332b804df591912be0587b97456d3f15761a Mon Sep 17 00:00:00 2001 From: Istvan Berenyi <39776299+istvan-berenyi@users.noreply.github.com> Date: Wed, 11 Sep 2024 17:38:04 +0100 Subject: [PATCH 3/4] Update admin_manual/installation/nginx-root.conf.sample Co-authored-by: Ferdinand Thiessen Signed-off-by: Istvan Berenyi <39776299+istvan-berenyi@users.noreply.github.com> --- admin_manual/installation/nginx-root.conf.sample | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/admin_manual/installation/nginx-root.conf.sample b/admin_manual/installation/nginx-root.conf.sample index ba8643db3..93260e100 100644 --- a/admin_manual/installation/nginx-root.conf.sample +++ b/admin_manual/installation/nginx-root.conf.sample @@ -22,10 +22,12 @@ server { } server { - listen 443 ssl; - http2 on; - listen [::]:443 ssl; - http2 on; + listen 443 ssl http2; + listen [::]:443 ssl http2; + # With NGinx >= 1.25.1 you should use this instead: + # listen 443 ssl; + # listen [::]:443 ssl; + # http2 on; server_name cloud.example.com; # Path to the root of your installation From dc56b80a4dbf2c2a91b138ec41bd26614ad4f2a8 Mon Sep 17 00:00:00 2001 From: Istvan Berenyi <39776299+istvan-berenyi@users.noreply.github.com> Date: Wed, 11 Sep 2024 17:39:35 +0100 Subject: [PATCH 4/4] Update nginx-subdir.conf.sample Signed-off-by: Istvan Berenyi <39776299+istvan-berenyi@users.noreply.github.com> --- admin_manual/installation/nginx-subdir.conf.sample | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/admin_manual/installation/nginx-subdir.conf.sample b/admin_manual/installation/nginx-subdir.conf.sample index 4ac313df5..0ce5efb42 100644 --- a/admin_manual/installation/nginx-subdir.conf.sample +++ b/admin_manual/installation/nginx-subdir.conf.sample @@ -24,10 +24,12 @@ server { } server { - listen 443 ssl; - http2 on; - listen [::]:443 ssl; - http2 on; + listen 443 ssl http2; + listen [::]:443 ssl http2; + # With NGinx >= 1.25.1 you should use this instead: + # listen 443 ssl; + # listen [::]:443 ssl; + # http2 on; server_name cloud.example.com; # Path to the root of the domain