在服务器端使用带有stream
块的 Sinatra。
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
section 和proxy_set_header Connection keep-alive;
in 中尝试过location
。
没有什么帮助:(
没有持久连接和未传递给任何客户端的消息。