るりまサーチ

最速Rubyリファレンスマニュアル検索!
66件ヒット [1-66件を表示] (0.086秒)
トップページ > クエリ:l[x] > クエリ:>[x] > クラス:WEBrick::GenericServer[x]

別のキーワード

  1. matrix l
  2. kernel $-l
  3. _builtin $-l
  4. lupdecomposition l
  5. l

ライブラリ

キーワード

検索結果

WEBrick::GenericServer#logger -> WEBrick::Log (6301.0)

生成する時に指定された、自身をロギングする WEBrick::Log のインス タンスを返します。

...生成する時に指定された、自身をロギングする WEBrick::Log のインス
タンスを返します。...

WEBrick::GenericServer#listen(address, port) -> [TCPServer] (6201.0)

与えられたアドレスとポートで TCPServer オブジェクトを生成し listener として管理します。

...れたアドレスとポートで TCPServer オブジェクトを生成し
l
istener として管理します。

@param address アドレスを文字列で指定します。

@param port listen するポートを整数で指定します。

@see WEBrick::GenericServer#listeners, TCPServer#listen...

WEBrick::GenericServer#listeners -> [TCPServer] (6201.0)

listen している TCPServer オブジェクトの配列を返します。

...
l
isten している TCPServer オブジェクトの配列を返します。...

WEBrick::GenericServer#ssl_context -> OpenSSL::SSL::SSLContext | nil (6201.0)

サーバが保持する OpenSSL::SSL::SSLContext オブジェクトを返します。

...サーバが保持する OpenSSL::SSL::SSLContext オブジェクトを返します。...

WEBrick::GenericServer#status -> Symbol (201.0)

現在のサーバのステータスを Symbol オブジェクトで返します。 値は :Running(活動中), :Shutdown(終了処理中), :Stop(完全に停止) のいずれかです。

...現在のサーバのステータスを Symbol オブジェクトで返します。
値は :Running(活動中), :Shutdown(終了処理中), :Stop(完全に停止) のいずれかです。...

絞り込み条件を変える

WEBrick::GenericServer.new(config = {}, default = WEBrick::Config::General) -> WEBrick::GenericServer (201.0)

GenericServer オブジェクトを生成して返します。

...=> "#{svrsoft} OpenSSL/#{osslv}",
:SSLEnable => true, # Ruby 1.8.3 以降では false がデフォルトです。
:SSLCertificate => nil,
:SSLPrivateKey => nil,
:SSLClientCA => nil,
:SSLExtraChainCert => nil,
:SSLCACertificateFile => nil,
:SSLCACe...
...tificatePath => nil,
:SSLCertificateStore => nil,
:SSLVerifyClient => ::OpenSSL::SSL::VERIFY_NONE,
:SSLVerifyDepth => nil,
:SSLVerifyCallback => nil, # custom verification
:SSLTimeout => nil,
:SSLOptions => nil,
:SSLStartImmediately => true,
# Mu...
...st specify if you use auto generated certificate.
:SSLCertName => nil,
:SSLCertComment => "Generated by Ruby/OpenSSL"

@param config サーバの設定を保存したハッシュを指定します。

@param default サーバのデフォルトの設定を保存したハッシュ...