ryanb / private_pub

Handle pub/sub messaging through private channels in Rails using Faye.
MIT License
864 stars 228 forks source link

Why I can't start faye server with using thin directly #90

Open ghost opened 10 years ago

ghost commented 10 years ago

in Development

I use rackup private_pub.ru -s thin -E production all works perfect

but I use thin start -C thin.yml with config.ru whose content is exactly same as private_pub.rb

and thin.yml looks like:


pid: tmp/pids/faye.pid address: 0.0.0.0 timeout: 120 port: 9292 log: log/faye.log max_conns: 2048 require: [] max_persistent_conns: 4048 environment: production servers: 1 daemonize: true

then I can't found faye.js file

any help to fix this?