initial upload

This commit is contained in:
David Schroeder
2026-07-25 13:11:37 -05:00
commit 943ddb064f
25 changed files with 2586 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
server {
listen 443 ssl http2;
server_name tapm.scity.us;
ssl_certificate /etc/nginx/ssl/tapm.scity.us/fullchain.pem;
ssl_certificate_key /etc/nginx/ssl/tapm.scity.us/privkey.pem;
client_max_body_size 64k;
location / {
proxy_pass http://127.0.0.1:8080;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_read_timeout 5m;
proxy_request_buffering off;
proxy_buffering off;
}
}