Gollum は、Rubyで記述されたGitHubの新しいウィキエンジンです。ローカルにデプロイすると、Sinatraインスタンスを使用してWebインターフェイスを提供します。
Apacheやmod_Rails(Phusion Passenger)を使用して、Dreamhostなどの共有ホスティング環境で実行することは可能ですか?
ファイル「config.ru」を作成し、これを追加します。
require "gollum/frontend/app"
Precious::App.set(:gollum_path, File.dirname(__FILE__))
Precious::App.set(:wiki_options, {})
run Precious::App
優れたガイドがあります:
https://github.com/tecnh/gollum/wiki/Gollum-and-Passenger
主なポイントは次のとおりです。
#!/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の答えは正しいですが、古いバージョンのゴラムを使用する必要があったので、Bundlerでセットアップしました。
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
また、Passengerが必要とするため、ディレクトリpublic
およびtmp
を作成することを忘れないでください。
しかし、私は別の問題に遭遇しました。 git
がwebserver-userのパスにあることを確認する必要があります。私にとってはそうではありませんでした。残念ながらエラーメッセージは表示されません。常にページにアクセスして新しいページを作成するだけです。