From 48b9bfb635786cd39e7849bfe30b2ae28dc8b032 Mon Sep 17 00:00:00 2001 From: inference Date: Sun, 29 Jun 2025 16:23:52 +0000 Subject: [PATCH] fix(nginx): switch deprecated `listen http2` directive to `http2` directive --- xb-00-01/nginx/website.conf | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/xb-00-01/nginx/website.conf b/xb-00-01/nginx/website.conf index e49424b..6c0d48b 100644 --- a/xb-00-01/nginx/website.conf +++ b/xb-00-01/nginx/website.conf @@ -1,6 +1,6 @@ # Inferencium - xb-00-01 # Nginx - Configuration - Website -# Version: 10.0.0 +# Version: 10.0.1-alpha.1 # Copyright 2022 Jake Winters # SPDX-License-Identifier: BSD-3-Clause @@ -27,10 +27,11 @@ server { server { # General server_name inferencium.net; + http2 on; ## IPv4 - listen 443 ssl http2; + listen 443 ssl; ## IPv6 - listen [::]:443 ssl http2; + listen [::]:443 ssl; # Location location / {