初期状態のAWS Elastic beanstalkでは、CGIを動かす事ができないので、動かせるようにしてみた。 準備 前回の記事を参考に、php5アプリケーションをdeployして環境を動かしておきます。 CGIを置いてみる ひとまず試しにCGIファイルを置いてみます。 ~/work/php5 $ cat test.cgi #!/usr/bin/perl print <<EOF; Content-type:text/plain this is cgi test on beanstalk EOF ~/work/php5 $ chmod +x test.cgi ~/work/php5 $ ./test.cgi Content-type:text/plain this is cgi test on beanstalk ~/work/php5 $ git add test.cgi ~/work