[前][次][番号順一覧][スレッド一覧]

ruby-reference-manual:1282

From: Kazuhiro NISHIYAMA <zn@m...>
Date: Mon, 03 Nov 2008 19:01:51 +0900
Subject: [ruby-reference-manual:1282] rack対応

西山和広です。

bitclustのrack対応をしてみました。

使い方の例としては
http://www.ruby-lang.org/ja/man/archive/snapshot/
のアーカイブを展開して、以下のように準備して、

tar xf ruby-refm-1.9.0-dynamic-snapshot.tar.*
cp ruby-refm-1.9.0-dynamic/bitclust/config.ru ruby-refm-1.9.0-dynamic/
mkdir ruby-refm-1.9.0-dynamic/{public,tmp}


apacheの方で以下のような感じで設定すればいいはずです。

<VirtualHost *>
        ServerName bitclust.example.net
        DocumentRoot /path/to/ruby-refm-1.9.0-dynamic/public
        RackBaseURI /
        <Directory /path/to/ruby-refm-1.9.0-dynamic>
                Options FollowSymLinks
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>

        ErrorLog /var/log/apache2/bitclust_error.log

        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn

        CustomLog /var/log/apache2/bitclust_access.log combined
        ServerSignature Off

        <IfModule mod_userdir.c>
                UserDir disabled
        </IfModule>
</VirtualHost>


-- 
|ZnZ(ゼット エヌ ゼット)
|西山和広(Kazuhiro NISHIYAMA)

--
ML: ruby-reference-manual@m...
使い方: http://QuickML.com/

[前][次][番号順一覧][スレッド一覧]