Ruby 1.9.2 リファレンスマニュアル > ライブラリ一覧 > library webrick/httpserver > class WEBrick::HTTPServer > mount
mount(dir, servlet, *options) -> ()
サーバ上のディレクトリ dir にサーブレット servlet を対応させます。
include WEBrick srv = HTTPServer.new( { :BindAddress => '127.0.0.1', :Port => 10080 } ) srv.mount('/img', WEBrick::HTTPServlet::FileHandler, '/home/username/images')