Debian 7.0
Sponsored Link

Rubyスクリプトを動作させる2013/05/11

 
Rubyをインストールして CGI として使えるようにします。
[1] Ruby インストール
root@www:~#
aptitude -y install ruby1.9.3
root@www:~#
vi /etc/apache2/mods-enabled/mime.conf
# 219行目:Rubyスクリプトとして扱う拡張子を追記

AddHandler cgi-script .cgi .pl
.rb
root@www:~#
/etc/init.d/apache2 restart

Restarting web server: apache2 ... waiting .
[2] Rubyテストページを作成して動作確認をします。作成したテストページにWebブラウザでアクセスして、以下のようなページが表示されればOKです。
root@www:~#
vi /var/www/index.rb
#!/usr/bin/ruby

print "Content-type: text/html\n\n"
print "<html>\n<body>\n"
print "<div style=\"width: 100%; font-size: 40px; font-weight: bold; text-align: center;\">\n"
print "Ruby Test Page<br />"
print Time.now.strftime('%Y/%m/%d')
print "\n</div>\n"
print "</body>\n</html>\n" 

root@www:~#
chmod 705 /var/www/index.rb

関連コンテンツ