为生产设置瘦Web服务器

时间:2014-01-29 09:49:43

标签: ruby-on-rails ruby thin

我正在尝试在ubuntu 12.04服务器上以Thin webser生产模式进行设置。

我遵循了本指南http://www.rackspace.com/knowledge_center/article/ubuntu-thin-web-server-for-ruby

但是当我去

www.mydomain,com:3000我只是暂停。

我试过

curl http://localhost:3000 

从服务器本身提供

curl: (7) couldn't connect to host


cat /etc/thin1.9.1/test_blueprinter.yml 
--- 
timeout: 30
daemonize: true
port: 3000
max_conns: 1024
log: log/thin.log
wait: 30
require: []

address: 0.0.0.0
chdir: /home/lab/rails_apps/blueprinter
pid: tmp/pids/thin.pid
environment: production
max_persistent_conns: 512
servers: 1

如何才能看到我的服务器正在运行?如果是这样,为什么我无法访问它?

更新

所以我可以通过

启动服务器
bundle exec thin start

它有效,因为我现在从这个命令得到答案

curl http://localhost:3000

0 个答案:

没有答案