Yanıtlar:
"Config.ru" dosyasını oluşturun, buna ekleyin:
require "gollum/frontend/app"
Precious::App.set(:gollum_path, File.dirname(__FILE__))
Precious::App.set(:wiki_options, {})
run Precious::App
Üzerinde mükemmel bir rehber var:
https://github.com/tecnh/gollum/wiki/Gollum-and-Passenger
Ana noktalar:
#!/usr/bin/ruby
require 'rubygems'
require 'bundler/setup'
require 'gollum/frontend/app'
system("which git") or raise "Looks like I can't find the git CLI in your path.\nYour path is: #{ENV['PATH']}"
gollum_path = '/path/to/wiki' # CHANGE THIS TO POINT TO YOUR OWN WIKI REPO
disable :run
configure :development, :staging, :production do
set :raise_errors, true
set :show_exceptions, true
set :dump_errors, true
set :clean_trace, true
end
$path = gollum_path
Precious::App.set(:gollum_path, gollum_path)
Precious::App.set(:wiki_options, {})
run Precious::App
August Lilleaas'ın cevabı doğrudur, ancak gollum'un eski bir sürümünü kullanmam gerekiyordu, bu yüzden Bundler ile kurdum:
Gemfile
:
source 'http://rubygems.org'
gem 'rdiscount'
gem 'gollum', '1.3.0'
config.ru
:
require 'rubygems'
require 'bundler'
Bundler.require
require "gollum/frontend/app"
Precious::App.set(:gollum_path, File.expand_path(File.dirname(__FILE__)))
Precious::App.set(:wiki_options, {})
run Precious::App
Ayrıca dizinleri oluşturmayı unutmayın public
ve tmp
Yolcu bunları gerektirdiğinden.
Ancak başka bir sorunla karşılaştım. Bunun git
web sunucusu kullanıcısı yolunda olduğundan emin olmalısınız . Benim için durum böyle değildi ve ne yazık ki bir hata mesajı yok, yeni bir sayfa oluşturmak için her zaman sayfaya ulaşıyorsunuz.