Method: Sentry::Transport::Configuration#ssl

Defined in:
lib/sentry/transport/configuration.rb

#sslHash?

The SSL configuration to use to connect to Sentry. You can either pass a ‘Hash` containing `ca_file` and `verification` keys, or you can set those options directly on the `Sentry::HTTPTransport::Configuration` object:

Examples:

config.transport.ssl =  {
  ca_file: "/path/to/ca_file",
  verification: true
end

Returns:

  • (Hash, nil)

54
55
56
# File 'lib/sentry/transport/configuration.rb', line 54

def ssl
  @ssl
end