スケルトンを作成する - mass10/catalyst.note GitHub Wiki

####Catalyst アプリケーションのスケルトンを作成

※任意の場所で実行します。

$ catalyst.pl アプリケーション名

####アプリケーションを公開

Apache HTTP Server の設定ファイルを開く

# vim /etc/httpd/conf.d/perl.conf

下記のように追記

PerlSwitches -I/aaa/bbb/ccc/アプリケーション名/lib
PerlModule アプリケーション名
<Location /外部に見せたいアプリケーション名>
  SetHandler perl-script
  PerlResponseHandler アプリケーション名
</Location>

<Location /外部に見せたいアプリケーション名> の部分は↓でもOK

<Location />
  SetHandler perl-script
  PerlResponseHandler アプリケーション名
</Location>
⚠️ **GitHub.com Fallback** ⚠️