Started Pong simple copy Chat - WIP simplification first job
This commit is contained in:
parent
c39e7b9e04
commit
7c20066b63
48 changed files with 2080 additions and 0 deletions
14
nginx/conf/locations/pong.conf
Normal file
14
nginx/conf/locations/pong.conf
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue