あー、補足

いろいろ補足しなくちゃいけないところがあるけど、X-Sendfileをfastcgi経由で使うには、fastcgi設定中で

"allow-x-send-file" => "enable"

を追加する必要あります。

fastcgi.server = (
    "/myapp" => ((
        "socket" => "/tmp/myapp_fastcgi.socket",
        "check-local" => "disable",
        "allow-x-send-file" => "enable",
    ))
)

こんな感じに。

他、最初のデモを飛ばしてしまった関係で、説明不足なところが多いです。

#shibuya.pm にはしばらくいますので、質問などありましたらどうぞ。

by typester / at 2006-10-21T17:51:00 / life / Comments(0)