Fedora 19
Sponsored Link

Ruby を動作させる2013/07/08

 
Ruby スクリプトを CGI として使えるようにしておきます。
[1] CGIの実行許可を事前に設定しておいた後、以下の設定をします。
[root@www ~]#
yum -y install ruby
[root@www ~]#
vi /etc/httpd/conf/httpd.conf
# 294行目:Rubyスクリプトとして扱う拡張子を追記

# Rubyスクリプトも拡張子「.cgi」とするなら追記の必要なし

AddHandler cgi-script .cgi .pl
.rb
[root@www ~]#
systemctl restart httpd.service

[2] Rubyテストページを作成して動作確認をします。作成したテストページにWebブラウザでアクセスして、以下のようなページが表示されればOKです。
[root@www ~]#
vi /var/www/html/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 Time.now.strftime('%Y/%m/%d')
print "\n</div>\n"
print "</body>\n</html>\n" 

[root@www ~]#
chmod 705 /var/www/html/index.rb

関連コンテンツ