Skip to content

Instantly share code, notes, and snippets.

@dylanowen
Last active August 21, 2018 07:42
Show Gist options
  • Save dylanowen/429a11c54112ff277a88fca22fe41740 to your computer and use it in GitHub Desktop.
Save dylanowen/429a11c54112ff277a88fca22fe41740 to your computer and use it in GitHub Desktop.
Loose Akka SSL Config
akka {
ssl-config {
loose {
disableHostnameVerification = true
allowWeakProtocols = true
allowWeakCiphers = true
acceptAnyCertificate = true
}
debug {
# Turn on all debugging
all = false
# Turn on ssl debugging
ssl = false
# Turn certpath debugging on
certpath = false
# Turn ocsp debugging on
ocsp = false
# Enable per-record tracing
record = false
# hex dump of record plaintext, requires record to be true
plaintext = false
# print raw SSL/TLS packets, requires record to be true
packet = false
# Print each handshake message
handshake = false
# Print hex dump of each handshake message, requires handshake to be true
data = false
# Enable verbose handshake message printing, requires handshake to be true
verbose = false
# Print key generation data
keygen = false
# Print session activity
session = false
# Print default SSL initialization
defaultctx = false
# Print SSLContext tracing
sslctx = false
# Print session cache tracing
sessioncache = false
# Print key manager tracing
keymanager = false
# Print trust manager tracing
trustmanager = false
# Turn pluggability debugging on
pluggability = false
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment