Windows 平台下 Octopress 自带的 WEBrick
有点慢, 于是就想使用 Thin
代替.
放狗一搜, 这里有答案了:
操作步骤:
1. 安装 Thin
2. 更改 Gemfile
, 在 development
里面最后添加一行
Gemfile1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| source "http://ruby.taobao.org"
group :development do gem 'rake', '~> 0.9' gem 'jekyll', '~> 0.12' gem 'rdiscount', '~> 2.0.7' gem 'pygments.rb', '~> 0.3.4' gem 'RedCloth', '~> 4.2.9' gem 'haml', '~> 3.1.7' gem 'compass', '~> 0.12.2' gem 'sass', '~> 3.2' gem 'sass-globbing', '~> 1.0.0' gem 'rubypants', '~> 0.2.0' gem 'rb-fsevent', '~> 0.9' gem 'stringex', '~> 1.4.0' gem 'liquid', '~> 2.3.0' gem 'directory_watcher', '1.4.1' gem 'thin' end
gem 'sinatra', '~> 1.4.2'
|
3. 重新运行 rake preview
就会使用 Thin
了
原文链接: http://lixxu.github.io/2014/01/16/use-thin-as-preview-server/
版权声明: 转载请注明出处.