I have a ruby project with a page with Faye Chat powered by its js implementation. Then to know what users are currently online i use rackup application. On our test server and on my local PC everything works fine - it puts data to log file but on production server that works through ssl Chat works fine but no callbacks is fired.
Sorry for my English.
require 'bundler/setup'
require 'faye'
require "active_record"
require "logger"
require 'erb'
require 'default_value_for'
require './app/models/chat'
require './app/models/chat_participant'
use ActiveRecord::ConnectionAdapters::ConnectionManagement
Faye::WebSocket.load_adapter('thin')
faye_server.listen(9292,
:key => '/etc/nginx/ssl/some.key',
:cert => '/etc/nginx/ssl/some.crt'
)
run faye_server
DB = YAML.load(ERB.new(File.read("./config/database.yml")).result).first.last
ActiveRecord::Base.establish_connection(
adapter: DB['adapter'],
database: DB['database'],
host: DB['host'],
encoding: DB['encoding'],
username: DB['username'],
password: DB['password']
)
LOGGER = Logger.new("./log/faye.log")
def debug message
if defined?(LOGGER)
LOGGER.debug message
end
end
debug "Established connection with database: #{DB['adapter']}, #{DB['database']}, #{DB['host']}."
# catch subscribe \ unsubscribe events
faye_server.bind(:subscribe) do |client_id, channel|
debug "client subscribed #{client_id}, #{channel}"
#Chat.subscribe client_id, channel
end