fix(nginx): switch deprecated listen http2 directive to http2 directive

This commit is contained in:
inference 2025-06-29 16:23:52 +00:00
parent b50ee445fd
commit 48b9bfb635
Signed by: inference
SSH Key Fingerprint: SHA256:/O3c09/4f1lh4zrhFs2qvQEDda6dZbTwG9xEcj8OfWo

View File

@ -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 / {