Chinaunix首页 | 论坛 | 博客
  • 博客访问: 853049
  • 博文数量: 188
  • 博客积分: 4433
  • 博客等级: 上校
  • 技术积分: 1905
  • 用 户 组: 普通用户
  • 注册时间: 2008-11-14 07:14
个人简介

linux

文章分类

全部博文(188)

文章存档

2016年(6)

2015年(22)

2014年(18)

2013年(5)

2012年(125)

2011年(10)

2010年(2)

分类: Python/Ruby

2012-02-28 12:06:15

1.go to
and select proper package

2.untar the package
3.install pcre

download and install it

4.run the command
passenger-install-nginx-module
5.configurations shoule be like below
   server {
      listen 80;
      server_name
      root /somewhere/public;   # <--- be sure to point to 'public'!
      passenger_enabled on;
   }

7配置config.ru

注意该文件应该放在public上一层目录,之后require相应的rb文件。这东西log里面还看不到提示,害我搞了半天。

[root@test-pangaeadns1 apps]# cat config.ru
# config.ru

require 'rubygems'
require 'sinatra'
require './app.rb'
run Sinatra::Application

阅读(1096) | 评论(0) | 转发(0) |
0

上一篇:Sinatra框架

下一篇:面试问题解法

给主人留下些什么吧!~~