class T2Server::DefaultConnectionParameters

Connection parameters with sensible defaults set for standard connections. If the connection is over SSL then the peer will be verified using the underlying OS’s certificate store.

Public Class Methods

new() click to toggle source
# File lib/t2-server/connection-parameters.rb, line 82
def initialize
  super
  self[:verify_peer] = true
  self[:ca_path] = "/etc/ssl/certs" # need to get good defaults for Win/OSX
end