Compare commits

..

2 Commits

View File

@ -1,6 +1,6 @@
# Inferencium - xb-00-01
# Nginx - Configuration - Website
# Version: 10.0.0-alpha.10
# 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 / {
@ -60,7 +61,7 @@ server {
## Headers
include /etc/nginx/include/header-security.conf;
client_max_body_size 16m;
ignore_invalid_headers off;