This commit is contained in:
ImBenji
2026-04-30 04:39:20 +01:00
parent 58b10f25d0
commit a0dff5132c
141 changed files with 6567 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
events {}
http {
server {
listen 80;
location /api {
proxy_pass http://signalling:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
}
}
}