linux – 如何在共享托管环境(例如Dreamhost)中使用mod_rails和Apache运行Gollum?

前端之家收集整理的这篇文章主要介绍了linux – 如何在共享托管环境(例如Dreamhost)中使用mod_rails和Apache运行Gollum?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Gollum是GitHub用Ruby编写的新wiki引擎.在本地部署它使用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
原文链接:/linux/402351.html

猜你在找的Linux相关文章