Refactored chat implementation to work with Websockets;

Fixed video.js working on Docker Container;
Added sample video to VideoPlayer for now;
Bug: Requests to the server take extra long to return a response;
This commit is contained in:
Chris-1010
2025-01-25 15:29:17 +00:00
parent f4aed8b0cc
commit 60c9d1986e
10 changed files with 437 additions and 489 deletions

View File

@@ -46,5 +46,9 @@ http {
location / {
proxy_pass http://frontend:5173; # frontend is the name of the React container in docker-compose
}
location /socket.io/ {
proxy_pass http://web_server:5000/socket.io/;
}
}
}