1件ヒット
[1-1件を表示]
(0.503秒)
トップページ > :2.5.0 > :Proc.new > :shift > :out > :NEWS for Ruby 2.0.0 > :client_cert_cb= > :webrick/httpauth/basicauth
検索結果
-
WEBrick
:: HTTPAuth :: BasicAuth (79.0) -
HTTP の Basic 認証のためのクラスです。
HTTP の Basic 認証のためのクラスです。
例
require 'webrick'
realm = "WEBrick's realm"
srv = WEBrick::HTTPServer.new({ :BindAddress => '127.0.0.1', :Port => 10080})
htpd = WEBrick::HTTPAuth::Htpasswd.new('dot.htpasswd')
htpd.set_passwd(nil, 'username', 'supersecretpass')
authenticator =...