【发布时间】:2012-02-21 05:36:45
【问题描述】:
下面的配置似乎有效,但现在失败了。我按照article 下载并安装了 tcp_proxy_module。
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
#server {
#}
# another virtual host using mix of IP-, name-, and port-based configuration
server {
listen 80;
#listen locahost:8080;
server_name localhost.in;
location / {
proxy_pass http://127.0.0.1:9000;
proxy_set_header Host $host;
}
}
}
更新:
Nginx 错误日志:
2012/02/21 10:56:59 [error] 14745#0: *278 upstream timed out (60: Operation timed out) while reading upstream, client: 127.0.0.1, server: localhost.in, request: "GET /websocket/room/socket?roomNo=1&user=sameerFF HTTP/1.1", upstream: "http://127.0.0.1:9000/websocket/room/socket?roomNo=1&user=sameerFF", host: "test.localhost.in"
2012/02/21 10:56:59 [error] 14745#0: *257 upstream timed out (60: Operation timed out) while reading upstream, client: 127.0.0.1, server: localhost.in, request: "GET /websocket/room/socket?roomNo=1&user=sameerChrome HTTP/1.1", upstream: "http://127.0.0.1:9000/websocket/room/socket?roomNo=1&user=sameerChrome", host: "test.localhost.in"
2012/02/21 10:59:40 [error] 15366#0: *10 upstream timed out (60: Operation timed out) while reading upstream, client: 127.0.0.1, server: localhost.in, request: "GET /websocket/room/socket?roomNo=1&user=sameerFF HTTP/1.1", upstream: "http://127.0.0.1:9000/websocket/room/socket?roomNo=1&user=sameerFF", host: "test.localhost.in"
更新 2:
使用此配置,我在启动 nginx 时遇到绑定异常。如果我删除 tcp 设置,nginx 就会正常运行。对于常规的 http 请求和 WebSocket 请求,我需要端口 80 重定向到 9000
#user nobody;
worker_processes 1;
error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
tcp {
upstream websockets {
## Play! location
server 127.0.0.1:9000;
}
server {
listen 80;
server_name localhost.in;
tcp_nodelay on;
proxy_pass websockets;
}
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
# another virtual host using mix of IP-, name-, and port-based configuration
server {
listen 80;
#listen locahost:8080;
server_name localhost.in;
location / {
proxy_pass http://127.0.0.1:9000;
proxy_set_header Host $host;
}
}
}
【问题讨论】:
-
它是怎么失败的?是否有来自 nginx 或日志文件的错误消息(在您重新启用错误日志之后,当然:))?只是 Websockets 部分不起作用吗?
-
我为聊天示例添加了错误日志条目,它们看起来像 TimeOutExceptions。
标签: nginx playframework websocket