2019-10-20 21:35:15 -04:00
|
|
|
module SSLHelper
|
|
|
|
def ssl_query
|
|
|
|
@ssl_query ||= if Puma.jruby?
|
|
|
|
@keystore = File.expand_path "../../../examples/puma/keystore.jks", __FILE__
|
2020-06-06 18:27:38 -04:00
|
|
|
@ssl_cipher_list = "TLS_DHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
|
2020-08-07 17:31:36 -04:00
|
|
|
"keystore=#{@keystore}&keystore-pass=jruby_puma&ssl_cipher_list=#{@ssl_cipher_list}"
|
2019-10-20 21:35:15 -04:00
|
|
|
else
|
|
|
|
@cert = File.expand_path "../../../examples/puma/cert_puma.pem", __FILE__
|
|
|
|
@key = File.expand_path "../../../examples/puma/puma_keypair.pem", __FILE__
|
|
|
|
"key=#{@key}&cert=#{@cert}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|