web-dev-qa-db-ja.com

共有ホスティング環境(Dreamhostなど)でmod_RailsとApacheを使用してGollumを実行するにはどうすればよいですか?

Gollum は、Rubyで記述されたGitHubの新しいウィキエンジンです。ローカルにデプロイすると、Sinatraインスタンスを使用してWebインターフェイスを提供します。

Apacheやmod_Rails(Phusion Passenger)を使用して、Dreamhostなどの共有ホスティング環境で実行することは可能ですか?

10
Kenners

ファイル「config.ru」を作成し、これを追加します。

require "gollum/frontend/app"

Precious::App.set(:gollum_path, File.dirname(__FILE__))
Precious::App.set(:wiki_options, {})
run Precious::App
5
August Lilleaas

優れたガイドがあります:

https://github.com/tecnh/gollum/wiki/Gollum-and-Passenger

主なポイントは次のとおりです。

  • config.ruをlib/gollum/frontendに追加します
  • ドキュメントルートをlib/gollum/frontend/publicにポイントします
  • 次のconfig.ruをベースとして使用し、それに応じてwikiパスを設定します(バンドラーセットアップ部分を追加する必要がありました)
#!/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
7
reto

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のパスにあることを確認する必要があります。私にとってはそうではありませんでした。残念ながらエラーメッセージは表示されません。常にページにアクセスして新しいページを作成するだけです。

1
fabi