Fix the /realtime endpoint by making sure buffering is off
This commit is contained in:
parent
18a944427f
commit
b3292f8549
1 changed files with 6 additions and 0 deletions
|
@ -21,6 +21,12 @@ location / {
|
||||||
proxy_pass http://web_app_server;
|
proxy_pass http://web_app_server;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /realtime {
|
||||||
|
proxy_pass http://web_app_server;
|
||||||
|
proxy_buffering off;
|
||||||
|
proxy_request_buffering off;
|
||||||
|
}
|
||||||
|
|
||||||
location /v1/ {
|
location /v1/ {
|
||||||
proxy_buffering off;
|
proxy_buffering off;
|
||||||
|
|
||||||
|
|
Reference in a new issue