Splunk HTTP Event Collector (HEC)
Receive logs from Splunk
/services/collector/event, /services/collector/raw, and /services/collector/health.Configuration
Example configurations
{
"sources": {
"my_source_id": {
"type": "splunk_hec"
}
}
}[sources.my_source_id]
type = "splunk_hec"
sources:
my_source_id:
type: splunk_hec
{
"sources": {
"my_source_id": {
"type": "splunk_hec",
"address": "0.0.0.0:8088",
"valid_tokens": [
"A94A8FE5CCB19BA61C4C08"
]
}
}
}[sources.my_source_id]
type = "splunk_hec"
address = "0.0.0.0:8088"
valid_tokens = [ "A94A8FE5CCB19BA61C4C08" ]
sources:
my_source_id:
type: splunk_hec
address: 0.0.0.0:8088
valid_tokens:
- A94A8FE5CCB19BA61C4C08
acknowledgements
optional objectsplunk_hec source.acknowledgements.ack_idle_cleanup
optional boolWhether or not to remove channels after idling for max_idle_time seconds.
A channel is idling if it is not used for sending data or querying acknowledgement statuses.
falseacknowledgements.enabled
optional boolacknowledgements.max_idle_time
optional uintThe amount of time, in seconds, a channel is allowed to idle before removal.
Channels can potentially idle for longer than this setting but clients should not rely on such behavior.
Minimum of 1.
300acknowledgements.max_number_of_ack_channels
optional uintThe maximum number of Splunk HEC channels clients can use with this source.
Minimum of 1.
1e+06acknowledgements.max_pending_acks
optional uintThe maximum number of acknowledgement statuses pending query across all channels.
Equivalent to the max_number_of_acked_requests_pending_query Splunk HEC setting.
Minimum of 1.
1e+07acknowledgements.max_pending_acks_per_channel
optional uintThe maximum number of acknowledgement statuses pending query for a single channel.
Equivalent to the max_number_of_acked_requests_pending_query_per_ack_channel Splunk HEC setting.
Minimum of 1.
1e+06address
optional string literalThe socket address to listen for connections on.
The address must include a port.
0.0.0.0:8088event
optional objectCodec configuration applied to events received on /services/collector/event.
When decoding is set, Vector applies a second decoding pass after parsing the
HEC envelope. The envelope’s event field is passed through the codec,
and a single envelope can fan out to multiple events. Decode failures are
swallowed and do not return an error to the Splunk client.
The VRL codec can access HEC envelope metadata, such as host, sourcetype, and,
channel, and the authentication token via %splunk_hec.* paths and
get_secret!("splunk_hec_token") before the program executes.
event.decoding
optional objectDecoding configuration applied to the payload.
When unset, the endpoint preserves its existing per-endpoint default
behavior. When set, the endpoint-selected payload is processed through
framing and decoding, and a single payload can fan out to multiple
events.
event.decoding.avro
required objectcodec = "avro"event.decoding.avro.schema
required string literalThe Avro schema definition.
Note: The following [apache_avro::types::Value] variants are not supported:
DateDecimalDurationFixedTimeMillis
event.decoding.avro.strip_schema_id_prefix
required booltrue to strip the schema ID prefix, as described in Confluent Kafka’s documentation.event.decoding.codec
required string literal enum| Option | Description |
|---|---|
avro | Decodes the raw bytes as as an Apache Avro message. |
bytes | Uses the raw bytes as-is. |
gelf | Decodes the raw bytes as a GELF message. This codec is experimental for the following reason: The GELF specification is more strict than the actual Graylog receiver.
Vector’s decoder adheres more strictly to the GELF spec, with
the exception that some characters such as Other GELF codecs, such as Loki’s, use a Go SDK that is maintained by Graylog and is much more relaxed than the GELF spec. Going forward, Vector will use the Go SDK as the reference implementation, which means the codec may continue to relax the enforcement of the specification. |
influxdb | Decodes the raw bytes as an Influxdb Line Protocol message. |
json | Decodes the raw bytes as JSON. |
native | Decodes the raw bytes as native Protocol Buffers format. This decoder can output all types of events: logs, metrics, and traces. This codec is experimental. |
native_json | Decodes the raw bytes as native JSON format. This decoder can output all types of events: logs, metrics, and traces. This codec is experimental. |
otlp | Decodes the raw bytes as OTLP (OpenTelemetry Protocol) protobuf format. This decoder handles the three OTLP signal types: logs, metrics, and traces. It automatically detects which type of OTLP message is being decoded. |
protobuf | Decodes the raw bytes as protobuf. |
syslog | Decodes the raw bytes as a Syslog message. Decodes either as the RFC 3164-style format (“old” style) or the RFC 5424-style format (“new” style, includes structured data). |
vrl | Decodes the raw bytes as a string and passes them as input to a VRL program. |
event.decoding.gelf
optional objectcodec = "gelf"event.decoding.gelf.lossy
optional boolDetermines whether to replace invalid UTF-8 sequences instead of failing.
When true, invalid UTF-8 sequences are replaced with the U+FFFD REPLACEMENT CHARACTER.
trueevent.decoding.gelf.validation
optional string literal enum| Option | Description |
|---|---|
relaxed | Uses more relaxed validation that skips strict GELF specification checks. This mode does not treat specification violations as errors, allowing the decoder to accept messages from sources that don’t strictly follow the GELF spec. |
strict | Uses strict validation that closely follows the GELF spec. |
strictevent.decoding.influxdb
optional objectcodec = "influxdb"event.decoding.influxdb.lossy
optional boolDetermines whether to replace invalid UTF-8 sequences instead of failing.
When true, invalid UTF-8 sequences are replaced with the U+FFFD REPLACEMENT CHARACTER.
trueevent.decoding.json
optional objectcodec = "json"event.decoding.json.lossy
optional boolDetermines whether to replace invalid UTF-8 sequences instead of failing.
When true, invalid UTF-8 sequences are replaced with the U+FFFD REPLACEMENT CHARACTER.
trueevent.decoding.native_json
optional objectcodec = "native_json"event.decoding.native_json.lossy
optional boolDetermines whether to replace invalid UTF-8 sequences instead of failing.
When true, invalid UTF-8 sequences are replaced with the U+FFFD REPLACEMENT CHARACTER.
trueevent.decoding.protobuf
optional objectcodec = "protobuf"event.decoding.protobuf.desc_file
optional string literalThe path to the protobuf descriptor set file.
This file is the output of protoc -I <include path> -o <desc output path> <proto>.
For more information, see How Buf images work.
event.decoding.protobuf.message_type
optional string literalevent.decoding.protobuf.use_json_names
optional boolUse JSON field names (camelCase) instead of protobuf field names (snake_case).
When enabled, the deserializer will output fields using their JSON names as defined
in the .proto file (for example, jobDescription instead of job_description).
This is useful when working with data that needs to be converted to JSON or when interfacing with systems that use JSON naming conventions.
falseevent.decoding.signal_types
optional [string]Signal types to attempt parsing, in priority order.
The deserializer tries to parse signals in the specified order. This allows you to optimize
performance when you know the expected signal types. For example, if you only receive
traces, set this to ["traces"] to avoid attempting to parse as logs or metrics first.
If not specified, defaults to trying all types in this order: logs, metrics, traces. Duplicate signal types are automatically removed while preserving order.
codec = "otlp"[logs metrics traces]event.decoding.syslog
optional objectcodec = "syslog"event.decoding.syslog.lossy
optional boolDetermines whether to replace invalid UTF-8 sequences instead of failing.
When true, invalid UTF-8 sequences are replaced with the U+FFFD REPLACEMENT CHARACTER.
trueevent.decoding.vrl
required objectcodec = "vrl"event.decoding.vrl.source
required string literal. target are used as the decoding result.
Compilation errors or use of abort in the program result in a decoding error.event.decoding.vrl.timezone
optional string literalThe name of the timezone to apply to timestamp conversions that do not contain an explicit
time zone. The time zone name may be any name in the TZ database, or local
to indicate system local time.
If not set, local is used.
event.framing
optional objectFraming configuration applied to the payload.
Only used when decoding is also set. Defaults to a per-codec choice
(typically bytes) that produces one event per payload.
event.framing.character_delimited
required objectmethod = "character_delimited"event.framing.character_delimited.delimiter
required ascii_charevent.framing.character_delimited.max_length
optional uintThe maximum length of the byte buffer.
This length does not include the trailing delimiter.
By default, no maximum length is enforced. If events are malformed, this can lead to additional resource usage as events continue to be buffered in memory, and can potentially lead to memory exhaustion in extreme cases.
If there is a risk of processing malformed data, such as logs with user-controlled input, consider setting the maximum length to a reasonably large value as a safety net. This prevents processing from being unbounded.
event.framing.chunked_gelf
optional objectmethod = "chunked_gelf"event.framing.chunked_gelf.decompression
optional string literal enum| Option | Description |
|---|---|
Auto | Automatically detect the decompression method based on the magic bytes of the message. |
Gzip | Use Gzip decompression. |
None | Do not decompress the message. |
Zlib | Use Zlib decompression. |
Autoevent.framing.chunked_gelf.max_length
optional uintThe maximum length of a single GELF message, in bytes. Messages longer than this length are dropped. If this option is not set, the decoder does not limit the length of messages and the per-message memory is unbounded.
Note: A message can be composed of multiple chunks, and this limit applies to the whole message, not to individual chunks.
This limit takes into account only the message payload. GELF header bytes are excluded from the calculation. The message payload is the concatenation of all chunk payloads.
event.framing.chunked_gelf.pending_messages_limit
optional uintevent.framing.chunked_gelf.timeout_secs
optional float5event.framing.length_delimited
required objectmethod = "length_delimited"trueevent.framing.length_delimited.length_field_length
optional uint4event.framing.length_delimited.length_field_offset
optional uintevent.framing.length_delimited.max_frame_length
optional uint8.388608e+06event.framing.max_frame_length
optional uintmethod = "varint_length_delimited"8.388608e+06event.framing.method
required string literal enum| Option | Description |
|---|---|
bytes | Byte frames are passed through as-is according to the underlying I/O boundaries (for example, split between messages or stream segments). |
character_delimited | Byte frames which are delimited by a chosen character. |
chunked_gelf | Byte frames which are chunked GELF messages. |
length_delimited | Byte frames which are prefixed by an unsigned big-endian 32-bit integer indicating the length. |
newline_delimited | Byte frames which are delimited by a newline character. |
octet_counting | Byte frames according to the octet counting format. |
varint_length_delimited | Byte frames which are prefixed by a varint indicating the length. This is compatible with protobuf’s length-delimited encoding. |
event.framing.newline_delimited
optional objectmethod = "newline_delimited"event.framing.newline_delimited.max_length
optional uintThe maximum length of the byte buffer.
This length does not include the trailing delimiter.
By default, no maximum length is enforced. If events are malformed, this can lead to additional resource usage as events continue to be buffered in memory, and can potentially lead to memory exhaustion in extreme cases.
If there is a risk of processing malformed data, such as logs with user-controlled input, consider setting the maximum length to a reasonably large value as a safety net. This prevents processing from being unbounded.
event.framing.octet_counting
optional objectmethod = "octet_counting"event.framing.octet_counting.max_length
optional uintkeepalive
optional objectkeepalive.max_connection_age_jitter_factor
optional floatThe factor by which to jitter the max_connection_age_secs value.
A value of 0.1 means that the actual duration will be between 90% and 110% of the specified maximum duration.
0.1keepalive.max_connection_age_secs
optional uintThe maximum amount of time a connection may exist before it is closed by sending
a Connection: close header on the HTTP response. Set this to a large value like
100000000 to “disable” this feature
Only applies to HTTP/0.9, HTTP/1.0, and HTTP/1.1 requests.
A random jitter configured by max_connection_age_jitter_factor is added
to the specified duration to spread out connection storms.
300(seconds)raw
optional objectCodec configuration applied to events received on /services/collector/raw.
When decoding is set, the (decompressed) request body is fed through the
codec instead of being emitted as a single event. Decode failures are
swallowed and do not return an error to the Splunk client. When unset, the
endpoint preserves its existing behavior of one event per request body.
raw.decoding
optional objectDecoding configuration applied to the payload.
When unset, the endpoint preserves its existing per-endpoint default
behavior. When set, the endpoint-selected payload is processed through
framing and decoding, and a single payload can fan out to multiple
events.
raw.decoding.avro
required objectcodec = "avro"raw.decoding.avro.schema
required string literalThe Avro schema definition.
Note: The following [apache_avro::types::Value] variants are not supported:
DateDecimalDurationFixedTimeMillis
raw.decoding.avro.strip_schema_id_prefix
required booltrue to strip the schema ID prefix, as described in Confluent Kafka’s documentation.raw.decoding.codec
required string literal enum| Option | Description |
|---|---|
avro | Decodes the raw bytes as as an Apache Avro message. |
bytes | Uses the raw bytes as-is. |
gelf | Decodes the raw bytes as a GELF message. This codec is experimental for the following reason: The GELF specification is more strict than the actual Graylog receiver.
Vector’s decoder adheres more strictly to the GELF spec, with
the exception that some characters such as Other GELF codecs, such as Loki’s, use a Go SDK that is maintained by Graylog and is much more relaxed than the GELF spec. Going forward, Vector will use the Go SDK as the reference implementation, which means the codec may continue to relax the enforcement of the specification. |
influxdb | Decodes the raw bytes as an Influxdb Line Protocol message. |
json | Decodes the raw bytes as JSON. |
native | Decodes the raw bytes as native Protocol Buffers format. This decoder can output all types of events: logs, metrics, and traces. This codec is experimental. |
native_json | Decodes the raw bytes as native JSON format. This decoder can output all types of events: logs, metrics, and traces. This codec is experimental. |
otlp | Decodes the raw bytes as OTLP (OpenTelemetry Protocol) protobuf format. This decoder handles the three OTLP signal types: logs, metrics, and traces. It automatically detects which type of OTLP message is being decoded. |
protobuf | Decodes the raw bytes as protobuf. |
syslog | Decodes the raw bytes as a Syslog message. Decodes either as the RFC 3164-style format (“old” style) or the RFC 5424-style format (“new” style, includes structured data). |
vrl | Decodes the raw bytes as a string and passes them as input to a VRL program. |
raw.decoding.gelf
optional objectcodec = "gelf"raw.decoding.gelf.lossy
optional boolDetermines whether to replace invalid UTF-8 sequences instead of failing.
When true, invalid UTF-8 sequences are replaced with the U+FFFD REPLACEMENT CHARACTER.
trueraw.decoding.gelf.validation
optional string literal enum| Option | Description |
|---|---|
relaxed | Uses more relaxed validation that skips strict GELF specification checks. This mode does not treat specification violations as errors, allowing the decoder to accept messages from sources that don’t strictly follow the GELF spec. |
strict | Uses strict validation that closely follows the GELF spec. |
strictraw.decoding.influxdb
optional objectcodec = "influxdb"raw.decoding.influxdb.lossy
optional boolDetermines whether to replace invalid UTF-8 sequences instead of failing.
When true, invalid UTF-8 sequences are replaced with the U+FFFD REPLACEMENT CHARACTER.
trueraw.decoding.json
optional objectcodec = "json"raw.decoding.json.lossy
optional boolDetermines whether to replace invalid UTF-8 sequences instead of failing.
When true, invalid UTF-8 sequences are replaced with the U+FFFD REPLACEMENT CHARACTER.
trueraw.decoding.native_json
optional objectcodec = "native_json"raw.decoding.native_json.lossy
optional boolDetermines whether to replace invalid UTF-8 sequences instead of failing.
When true, invalid UTF-8 sequences are replaced with the U+FFFD REPLACEMENT CHARACTER.
trueraw.decoding.protobuf
optional objectcodec = "protobuf"raw.decoding.protobuf.desc_file
optional string literalThe path to the protobuf descriptor set file.
This file is the output of protoc -I <include path> -o <desc output path> <proto>.
For more information, see How Buf images work.
raw.decoding.protobuf.message_type
optional string literalraw.decoding.protobuf.use_json_names
optional boolUse JSON field names (camelCase) instead of protobuf field names (snake_case).
When enabled, the deserializer will output fields using their JSON names as defined
in the .proto file (for example, jobDescription instead of job_description).
This is useful when working with data that needs to be converted to JSON or when interfacing with systems that use JSON naming conventions.
falseraw.decoding.signal_types
optional [string]Signal types to attempt parsing, in priority order.
The deserializer tries to parse signals in the specified order. This allows you to optimize
performance when you know the expected signal types. For example, if you only receive
traces, set this to ["traces"] to avoid attempting to parse as logs or metrics first.
If not specified, defaults to trying all types in this order: logs, metrics, traces. Duplicate signal types are automatically removed while preserving order.
codec = "otlp"[logs metrics traces]raw.decoding.syslog
optional objectcodec = "syslog"raw.decoding.syslog.lossy
optional boolDetermines whether to replace invalid UTF-8 sequences instead of failing.
When true, invalid UTF-8 sequences are replaced with the U+FFFD REPLACEMENT CHARACTER.
trueraw.decoding.vrl
required objectcodec = "vrl"raw.decoding.vrl.source
required string literal. target are used as the decoding result.
Compilation errors or use of abort in the program result in a decoding error.raw.decoding.vrl.timezone
optional string literalThe name of the timezone to apply to timestamp conversions that do not contain an explicit
time zone. The time zone name may be any name in the TZ database, or local
to indicate system local time.
If not set, local is used.
raw.framing
optional objectFraming configuration applied to the payload.
Only used when decoding is also set. Defaults to a per-codec choice
(typically bytes) that produces one event per payload.
raw.framing.character_delimited
required objectmethod = "character_delimited"raw.framing.character_delimited.delimiter
required ascii_charraw.framing.character_delimited.max_length
optional uintThe maximum length of the byte buffer.
This length does not include the trailing delimiter.
By default, no maximum length is enforced. If events are malformed, this can lead to additional resource usage as events continue to be buffered in memory, and can potentially lead to memory exhaustion in extreme cases.
If there is a risk of processing malformed data, such as logs with user-controlled input, consider setting the maximum length to a reasonably large value as a safety net. This prevents processing from being unbounded.
raw.framing.chunked_gelf
optional objectmethod = "chunked_gelf"raw.framing.chunked_gelf.decompression
optional string literal enum| Option | Description |
|---|---|
Auto | Automatically detect the decompression method based on the magic bytes of the message. |
Gzip | Use Gzip decompression. |
None | Do not decompress the message. |
Zlib | Use Zlib decompression. |
Autoraw.framing.chunked_gelf.max_length
optional uintThe maximum length of a single GELF message, in bytes. Messages longer than this length are dropped. If this option is not set, the decoder does not limit the length of messages and the per-message memory is unbounded.
Note: A message can be composed of multiple chunks, and this limit applies to the whole message, not to individual chunks.
This limit takes into account only the message payload. GELF header bytes are excluded from the calculation. The message payload is the concatenation of all chunk payloads.
raw.framing.chunked_gelf.pending_messages_limit
optional uintraw.framing.chunked_gelf.timeout_secs
optional float5raw.framing.length_delimited
required objectmethod = "length_delimited"trueraw.framing.length_delimited.length_field_length
optional uint4raw.framing.length_delimited.length_field_offset
optional uintraw.framing.max_frame_length
optional uintmethod = "varint_length_delimited"8.388608e+06raw.framing.method
required string literal enum| Option | Description |
|---|---|
bytes | Byte frames are passed through as-is according to the underlying I/O boundaries (for example, split between messages or stream segments). |
character_delimited | Byte frames which are delimited by a chosen character. |
chunked_gelf | Byte frames which are chunked GELF messages. |
length_delimited | Byte frames which are prefixed by an unsigned big-endian 32-bit integer indicating the length. |
newline_delimited | Byte frames which are delimited by a newline character. |
octet_counting | Byte frames according to the octet counting format. |
varint_length_delimited | Byte frames which are prefixed by a varint indicating the length. This is compatible with protobuf’s length-delimited encoding. |
raw.framing.newline_delimited
optional objectmethod = "newline_delimited"raw.framing.newline_delimited.max_length
optional uintThe maximum length of the byte buffer.
This length does not include the trailing delimiter.
By default, no maximum length is enforced. If events are malformed, this can lead to additional resource usage as events continue to be buffered in memory, and can potentially lead to memory exhaustion in extreme cases.
If there is a risk of processing malformed data, such as logs with user-controlled input, consider setting the maximum length to a reasonably large value as a safety net. This prevents processing from being unbounded.
raw.framing.octet_counting
optional objectmethod = "octet_counting"raw.framing.octet_counting.max_length
optional uintstore_hec_token
optional boolWhether or not to forward the Splunk HEC authentication token with events.
If set to true, when incoming requests contain a Splunk HEC token, the token used is kept in the
event metadata and preferentially used if the event is sent to a Splunk HEC sink.
falsetls
optional objecttls.alpn_protocols
optional [string]Sets the list of supported ALPN protocols.
Declare the supported ALPN protocols, which are used during negotiation with a peer. They are prioritized in the order that they are defined.
tls.ca_file
optional string literalAbsolute path to an additional CA certificate file.
The certificate must be in the DER or PEM (X.509) format. Additionally, the certificate can be provided as an inline string in PEM format.
tls.crt_file
optional string literalAbsolute path to a certificate file used to identify this server.
The certificate must be in DER, PEM (X.509), or PKCS#12 format. Additionally, the certificate can be provided as an inline string in PEM format.
If this is set and is not a PKCS#12 archive, key_file must also be set.
tls.enabled
optional boolWhether to require TLS for incoming or outgoing connections.
When enabled and used for incoming connections, an identity certificate is also required. See tls.crt_file for
more information.
tls.key_file
optional string literalAbsolute path to a private key file used to identify this server.
The key must be in DER or PEM (PKCS#8) format. Additionally, the key can be provided as an inline string in PEM format.
tls.key_pass
optional string literalPassphrase used to unlock the encrypted key file.
This has no effect unless key_file is set.
tls.server_name
optional string literalServer name to use when using Server Name Indication (SNI).
Only relevant for outgoing connections.
tls.verify_certificate
optional boolEnables certificate verification. For components that create a server, this requires that the client connections have a valid client certificate. For components that initiate requests, this validates that the upstream has a valid certificate.
If enabled, certificates must not be expired and must be issued by a trusted issuer. This verification operates in a hierarchical manner, checking that the leaf certificate (the certificate presented by the client/server) is not only valid, but that the issuer of that certificate is also valid, and so on, until the verification process reaches a root certificate.
Do NOT set this to false unless you understand the risks of not verifying the validity of certificates.
tls.verify_hostname
optional boolEnables hostname verification.
If enabled, the hostname used to connect to the remote host must be present in the TLS certificate presented by the remote host, either as the Common Name or as an entry in the Subject Alternative Name extension.
Only relevant for outgoing connections.
Do NOT set this to false unless you understand the risks of not verifying the remote hostname.
token
optional string literalDeprecated
valid_tokens instead.Optional authorization token.
If supplied, incoming requests must supply this token in the Authorization header, just as a client would if
it was communicating with the Splunk HEC endpoint directly.
If not supplied, the Authorization header is ignored and requests are not authenticated.
valid_tokens
optional [string]A list of valid authorization tokens.
If supplied, incoming requests must supply one of these tokens in the Authorization header, just as a client
would if it was communicating with the Splunk HEC endpoint directly.
If not supplied, the Authorization header is ignored and requests are not authenticated.
Outputs
<component_id>
Output Types
Logs
Warning
Event
Fields
2019-02-13T19:48:34+00:00 [info] Started GET "/" for 127.0.0.1splunk_hecX-Splunk-Request-Channel header or channel query parameter, in that order of precedence.2020-10-10T17:07:36.452332Z2020-10-10T17:07:36.452332ZTelemetry
Metrics
linkcomponent_discarded_events_total
counterfilter transform, or false if due to an error.component_errors_total
countercomponent_received_bytes_total
countercomponent_received_event_bytes_total
countercomponent_received_events_count
histogramA histogram of the number of events passed in each internal batch in Vector’s internal topology.
Note that this is separate than sink-level batching. It is mostly useful for low level debugging performance issues in Vector due to small internal batches.
component_received_events_total
countercomponent_sent_event_bytes_total
countercomponent_sent_events_total
counterhttp_server_handler_duration_seconds
histogramhttp_server_requests_received_total
counterhttp_server_responses_sent_total
countersource_buffer_max_byte_size
gaugeDeprecated
source_buffer_max_size_bytes.source_buffer_max_event_size
gaugeDeprecated
source_buffer_max_size_events.source_buffer_max_size_bytes
gaugesource_buffer_max_size_events
gaugesource_buffer_utilization
histogramsource_buffer_utilization_level
gaugesource_buffer_utilization_mean
gaugesource_lag_time_seconds
histogramHow it works
Context
splunk_hec source augments events with helpful
context keys.Indexer Acknowledgements
State
Transport Layer Security (TLS)
tls.* options and/or via an
OpenSSL configuration file. The file location defaults to
/usr/local/ssl/openssl.cnf or can be specified with the OPENSSL_CONF environment variable.