ft_transcendence/nginx/conf/locations/chat.conf
2025-11-21 14:17:37 +01:00

14 lines
334 B
Text

#forward the post request to the microservice
location /api/chat/ {
proxy_pass http://chat;
}
location /api/chat/socket.io/ {
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_pass http://chat;
}