> > Hi, I have another way to solve in > Linux. http://stackoverflow.com/a/43593650/1378817 >
For others that will come I solved this problem in Dropwizard/Linux in another way. First generate your keys: keytool -genkey -alias <aliasname> -keyalg RSA -keystore keystore.jks -keysize 2048 Then generate tour CSR: keytool -certreq -alias <aliasname> -file csr.txt -keystore keystore.jks Open your csr.txt and copy all content. Go to GoDaddy paste it and download the two .crt files as Others. Then concatenate the contents of b78*********.crt and gd_bundle-g2-g1.crt (make sure that the contents of the b78*********.crt are before the other file). Let's refer to that file as all_combined.crt from now. Finally combine your trust certs with your .jks: keytool -import -trustcacerts -keystore keystore.jks -storepass <keystorepassword> -alias <aliasname> -file all_combined.crt Then on your .yml file let this: applicationConnectors:- type: http port: 8080- type: https port: 8443 keyStorePath: keystore.jks keyStorePassword: <keystorepassword> keyStoreType: JKS supportedProtocols: [TLSv1, TLSv1.1, TLSv1.2] That is it, have fun! -- You received this message because you are subscribed to the Google Groups "dropwizard-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
