-
Notifications
You must be signed in to change notification settings - Fork 63
Source code
gazeldx edited this page Jan 20, 2013
·
13 revisions
在进行这一步之前,请先完成
$ git clone http://github.com/gazeldx/mystory
$ cd mystory
$ bundle install
$ cd mystory
$ rake db:setup RAILS_ENV=production
$ rake db:seed RAILS_ENV=production
修改config/config.yml
修改config/locales/zh.yml
$ cd mystory
-p指定端口,-D是后台运行。
$ unicorn_rails -p 80 -D
现在你可以访问http://yourdomain.com/ 了。
查看WEB服务unicorn的进程ID
$ ps -ef|grep unicorn
关闭WEB服务。进程ID是一个数字,如3456,就是上一行获得的ID。
$ kill -9 进程ID
关闭WEB服务后,你就可以重新启动WEB服务了。
还可以用Nginx作反向代理服务器,提升性能。见:启用Nginx。