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