NGINX:无法从套接字服务器接收响应

时间:2016-03-09 07:25:07

标签: java sockets nginx tcp

我使用 nginx-1.9.1 作为服务器来中继到套接字服务器。套接字服务器可以接收套接字请求,但是客户端无法从服务器接收响应。 nginx的配置是:

stream {
upstream xxx {
    server ipxx:8800;
}
server {
    listen 188xx;
    proxy_pass xxx;
}
}

日志显示:

client disconnected, bytes from/to client:2/0, bytes from/to upstream:0/2

我不知道为什么。

0 个答案:

没有答案