50 lines
996 B
Plaintext
50 lines
996 B
Plaintext
# Inferencium - xa000-1
|
|
# Nginx - Configuration - Inferencium - Internal - Stable Diffusion
|
|
# Version: 1.0.1-alpha.1
|
|
|
|
# Copyright 2023 Jake Winters
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
# Redirect (unencrypted)
|
|
server {
|
|
|
|
## General
|
|
server_name sd.int.inferencium.net;
|
|
listen 80;
|
|
# listen [::]:80;
|
|
|
|
## Location
|
|
location / {
|
|
return 301 https://$server_name$request_uri;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
# Server (TLS)
|
|
server {
|
|
|
|
## General
|
|
server_name sd.int.inferencium.net;
|
|
listen 443 ssl;
|
|
# listen [::]:443 ssl;
|
|
http2 on;
|
|
|
|
## Location
|
|
location / {
|
|
proxy_pass http://aa000-2:7860;
|
|
proxy_redirect off;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
## Security
|
|
ssl_certificate /etc/ssl/nginx/inferencium-int/fullchain.pem;
|
|
ssl_certificate_key /etc/ssl/nginx/inferencium-int/privkey.pem;
|
|
include include/header-security.conf;
|
|
|
|
}
|