在服务器端,使用Sinatra和一个stream
块。
get '/stream', :provides => 'text/event-stream' do
stream :keep_open do |out|
connections << out
out.callback { connections.delete(out) }
end
end
在客户端:
var es = new EventSource('/stream');
es.onmessage = function(e) { $('#chat').append(e.data + "\n") };
当我通过直接使用应用程序时http://localhost:9292/
,一切正常。连接是持久的,所有消息都传递给所有客户端。
但是,当它通过Nginx时http://chat.dev
,该连接将被丢弃,并且每秒大约会触发一次重新连接。
Nginx的安装程序对我来说没问题:
upstream chat_dev_upstream {
server 127.0.0.1:9292;
}
server {
listen 80;
server_name chat.dev;
location / {
proxy_pass http://chat_dev_upstream;
proxy_buffering off;
proxy_cache off;
proxy_set_header Host $host;
}
}
keepalive 1024
在upstream
部分和中尝试proxy_set_header Connection keep-alive;
过location
。
没有任何帮助:(
没有持久的连接和消息未传递给任何客户端。