Ruby/apacheで表示
提供: 初心者エンジニアの簡易メモ
2015年5月20日 (水) 03:14時点における127.0.0.1 (トーク)による版 (ページの作成:「==apacheのhttpd.conf設定== # AddHandler cgi-script .cgi .pl .asp AddHandler cgi-script .cgi .pl .asp .rb helloworld.rb #!/usr/bin/ruby print "Content-type: text/h...」)
apacheのhttpd.conf設定
# AddHandler cgi-script .cgi .pl .asp AddHandler cgi-script .cgi .pl .asp .rb
helloworld.rb
#!/usr/bin/ruby print "Content-type: text/html\n\n"; puts "Hello World"
railsの設定
<VirtualHost *:80> ServerName ruby.localhost DocumentRoot "D:/home/test/ruby/helloworld/public" HostNameLookups off UseCanonicalName on <Directory "D:/home/test/ruby/helloworld/public"> Options FollowSymLinks Includes ExecCGI AllowOverride All Allow from All </Directory> </VirtualHost>