适用于Playframework Websocket的VHosts Nginx Config [英] VHosts Nginx Config for Playframework Websockets

查看:70
本文介绍了适用于Playframework Websocket的VHosts Nginx Config的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下配置似乎有效,但现在失败了.我遵循了文章的要求,以下载并安装tcp_proxy_module.

The config below seemed to have worked but now its failing. I followed this article to download and install the 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错误日志:

Nginx Error Log:

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

With this config I get a bind exception when I start nginx. If I remove the tcp settings, nginx comes up alright. I need port 80 to redirect to 9000 for both regular http requests as well as WebSocket requests

#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;
    }
    }

}

推荐答案

似乎只是websocket无法正常工作.请再次阅读您链接的文章.您没有修改nginx配置.

It looks like it's just the websockets that are not working. Please read the article you linked again. You did not modify your nginx configuration.

根据该文章,为您提供的示例配置可能如下所示(尽管我尚未对其进行测试):

According to that article, a sample configuration for you might look like this (I have not tested it yet, though):

tcp {
    upstream websockets {
        ## Play! location
        server 127.0.0.1:9000;
    }   

    server {
        listen 80;
        server_name localhost.in;

        tcp_nodelay on;
        proxy_pass websockets;
    }
}

这篇关于适用于Playframework Websocket的VHosts Nginx Config的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆