about summary refs log tree commit homepage
path: root/examples/cgi-webrick.rb
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-04-30 22:04:44 +0000
committerEric Wong <e@80x24.org>2014-04-30 22:04:44 +0000
commitdae2c7b509308c052406a0d811e84e30db1bedd2 (patch)
tree7feae4a99fc57ce97361170e5aba2e6c50e04787 /examples/cgi-webrick.rb
parent2530c92abd468d9cba8d264237cdee42235d6842 (diff)
downloadpublic-inbox-dae2c7b509308c052406a0d811e84e30db1bedd2.tar.gz
Hopefully this is enough to get some folks started.
Diffstat (limited to 'examples/cgi-webrick.rb')
-rw-r--r--examples/cgi-webrick.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/cgi-webrick.rb b/examples/cgi-webrick.rb
index 1bc690f1..21e336d5 100644
--- a/examples/cgi-webrick.rb
+++ b/examples/cgi-webrick.rb
@@ -1,4 +1,7 @@
 #!/usr/bin/env ruby
+# Sample configuration using WEBrick, mainly intended dev/testing
+# for folks familiar with Ruby and not various Perl webserver
+# deployment options.
 require 'webrick'
 require 'logger'
 options = {
@@ -12,8 +15,8 @@ options = {
 server = WEBrick::HTTPServer.new(options)
 server.mount("/",
              WEBrick::HTTPServlet::CGIHandler,
-            "#{Dir.pwd}/blib/script/public-inbox.cgi")
+            "/var/www/cgi-bin/public-inbox.cgi")
 ['INT', 'TERM'].each do |signal|
-  trap(signal) {exit}
+  trap(signal) {exit!(0)}
 end
 server.start