Initial release
Build and Push Docker Image / build (push) Successful in 32s

This commit is contained in:
Stardream
2026-05-20 03:15:11 +10:00
commit 326101958a
20 changed files with 9500 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
server {
listen 80;
server_name _;
location /h/ {
proxy_http_version 1.1;
proxy_buffering off;
proxy_request_buffering off;
proxy_read_timeout 1h;
proxy_send_timeout 1h;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://streamhall:8080;
}
}