ft_transcendence/nginx/conf/locations/pong.conf

14 lines
334 B
Text

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