Files
nats-server/server/configs/tls_bad_cipher.conf
Ivan Kozlovic 9b25a379b8 Increase TLS timeout in config files
We would get failures on Travis, I would think because of small TLS timeout. Increase (or set) the TLS timeout to 2 seconds in most configuration files. Update tests that relied on the original value.
2015-12-08 15:20:20 -07:00

21 lines
375 B
Plaintext

# Simple TLS config file
port: 4443
net: apcera.me # net interface
tls {
cert_file: "./configs/certs/server.pem"
key_file: "./configs/certs/key.pem"
timeout: 2
# this should generate an error
cipher_suites: [
"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA",
"BAD_CIPHER_SPEC",
"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA",
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
]
}