mirror of
https://github.com/ticky/wayback-classic.git
synced 2026-06-11 07:37:41 -04:00
15 lines
434 B
Ruby
Executable File
15 lines
434 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
require 'webrick'
|
|
|
|
WEBrick::HTTPServer.new(Port: ENV.fetch("PORT", 8000),
|
|
DocumentRoot: File.expand_path("../..", __FILE__),
|
|
# https://memo88.hatenablog.com/entry/20130309/1362849357, ありがとうございます!
|
|
CGIInterpreter: "/usr/bin/ruby -Eutf-8:utf-8").tap do |server|
|
|
trap "INT" do
|
|
server.shutdown
|
|
end
|
|
|
|
server.start
|
|
end
|