Fix the /realtime endpoint by making sure buffering is off

This commit is contained in:
Joseph Schorr 2014-10-17 15:50:40 -04:00
parent 18a944427f
commit b3292f8549

View file

@ -21,6 +21,12 @@ location / {
proxy_pass http://web_app_server;
}
location /realtime {
proxy_pass http://web_app_server;
proxy_buffering off;
proxy_request_buffering off;
}
location /v1/ {
proxy_buffering off;