2014-12-24 5 views
0

좋은 하루! Faye gem을 사용하여 websocket 앱을 실행하려고하는데 다음과 같은 문제가 발생합니다. 프로덕션 서버에 앱을 배포 할 때 Ngix는 faye.js를 수신 할 수 없으며 faye 서버에 연결할 수 없습니다. Nginx에의하는 error.log에서 나는 다음 오류를 발견했습니다 : Duckku 디지털 오션에서 Rails + Faye + Puma로 인한 Nginx 오류

2014/12/24 15:44:39 [error] upstream prematurely closed connection while reading response header from upstream, client: 46.0.121.23, server: example.com, request: "GET /faye HTTP/1.1", upstream: "http://127.0.0.1:9292/faye", host: "example.com" 

2014/12/24 15:44:39 [error] *1 connect() failed (111: Connection refused) while connecting to upstream, client: 46.0.121.23, server: example.com, request: "GET /faye HTTP/1.1", upstream: "http://127.0.0.1:9292/faye", host: "example.com" 

내가 How to start faye server on a rails app deployed using dokku?Error 502 Bad Gateway on NGINX + rails + dokku 답변을 시도,하지만 나를 위해 도움이 아니에요.

내 Procfile 내 faye.ru가

require 'faye' 
require File.expand_path('../config/initializers/faye_token.rb', __FILE__) 

class ServerAuth 
    def incoming(message, callback) 
    if message['channel'] !~ %r{^/meta/} 
     if message['ext']['auth_token'] != FAYE_TOKEN 
     message['error'] = 'Invalid authentication token.' 
     end 
    end 
    callback.call(message) 
    end 
end 
faye_server = Faye::RackAdapter.new(:mount => '/faye', :timeout => 0) 
faye_server.add_extension(ServerAuth.new) 
run faye_server 

내 nginx.conf가입니다

web: bundle exec rails s Puma -p 5000 
faye: bundle exec rackup s Puma faye.ru 

입니다 :

upstream example.com { server 127.0.0.1:49169; } 
server { 
    listen  [::]:80; 
    listen  80; 
    server_name example.com; 
    location /{ 
    proxy_pass http://example.com; 
    proxy_http_version 1.1; 
    proxy_set_header Upgrade $http_upgrade; 
    proxy_set_header Connection "upgrade"; 
    proxy_set_header Host $http_host; 
    proxy_set_header X-Forwarded-Proto $scheme; 
    proxy_set_header X-Forwarded-For $remote_addr; 
    proxy_set_header X-Forwarded-Port $server_port; 
    proxy_set_header X-Request-Start $msec; 
    } 
    location /faye { 
    proxy_redirect  off; 
    proxy_set_header Upgrade $http_upgrade; 
    proxy_set_header Connection "upgrade"; 
    proxy_http_version 1.1; 
    proxy_buffering off; 
    proxy_cache_bypass $http_pragma $http_authorization; 
    proxy_no_cache  $http_pragma $http_authorization; 
    proxy_pass http://localhost:9292; 
    } 
} 

내 애플 faye.js 다음 얻을 :

<%= javascript_include_tag "http://example.com/faye.js" %> 
(210)

내가 무엇을 할 수

$(function() { 
    var faye = new Faye.Client('http://example.com/faye'); 
    faye.subscribe('/comments/new', function (data) { 
     eval(data); 
    }); 
}); 

서버를 페이에 연결? 개발 환경에서는 모든 것이 정상적으로 작동하지만 오류는 생산에만 있습니다.

답변