diff options
author | Maxim Devaev <[email protected]> | 2023-07-07 17:43:16 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2023-07-07 17:43:16 +0300 |
commit | 3749599361699fe291148a067bcaf6514aa368d0 (patch) | |
tree | 73536444ed02f28c9120065f79175705779fdcc9 | |
parent | e3313f33d3f92a84762963bb9c56529352a63758 (diff) |
nginx update with http2 directive
-rw-r--r-- | PKGBUILD | 2 | ||||
-rw-r--r-- | configs/nginx/listen-https.conf | 5 |
2 files changed, 4 insertions, 3 deletions
@@ -71,7 +71,7 @@ depends=( libgpiod freetype2 "v4l-utils>=1.22.1-1" - nginx-mainline + "nginx-mainline>=1.25.1" openssl platformio avrdude-pikvm diff --git a/configs/nginx/listen-https.conf b/configs/nginx/listen-https.conf index f6091bbd..db2f68e3 100644 --- a/configs/nginx/listen-https.conf +++ b/configs/nginx/listen-https.conf @@ -1,2 +1,3 @@ -listen 443 ssl http2; -listen [::]:443 ssl http2; +listen 443 ssl; +listen [::]:443 ssl; +http2 on; |