initial commit

This commit is contained in:
ray
2026-07-12 10:15:51 -04:00
commit 29aad9079e
46 changed files with 1369 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
server {
listen 8093;
server_name _;
location / {
proxy_pass http://127.0.0.1:11893;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host 192.168.50.98;
proxy_set_header Origin "http://192.168.50.98";
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 $scheme;
proxy_read_timeout 86400;
}
}