Fix code to conform to code style

This commit is contained in:
inference 2024-04-07 17:48:05 +00:00
parent b67e1cefcf
commit b29f34e97a
Signed by: inference
SSH Key Fingerprint: SHA256:K/a677+eHm7chi3X4s77BIpLTE9Vge1tsv+jUL5gI+Y

View File

@ -1,6 +1,6 @@
# Inferencium - xa000-1
# Nginx - Configuration - Inferencium - Internal - BINHOST
# Version: 0.2.0
# Version: 0.3.0
# Copyright 2024 Jake Winters
# SPDX-License-Identifier: BSD-3-Clause
@ -8,6 +8,7 @@
# Redirect (unencrypted)
server {
## General
server_name bin.int.inferencium.net;
listen 80;
@ -17,11 +18,13 @@ server {
location / {
return 301 https://$host$request_uri;
}
}
# Server (TLS)
server {
## General
server_name bin.int.inferencium.net;
listen 443 ssl;
@ -52,4 +55,5 @@ server {
add_header X-Frame-Options "DENY";
add_header Set-Cookie "Path=/;Secure;HttpOnly";
ignore_invalid_headers on;
}