ppalaga commented on code in PR #4875: URL: https://github.com/apache/camel-quarkus/pull/4875#discussion_r1187251603
########## integration-tests/vertx-websocket/README.adoc: ########## @@ -0,0 +1,15 @@ +# Generating server SSL certificates and trust store + +1. Generate the certificate keypair + +When prompted for the 'Common Name', use localhost. The other prompts can be skipped. + +``` +openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout src/main/resources/server-key.pem -out src/main/resources/server-cert.pem +``` + +2. Generate the PKCS12 trust store + +``` +cat src/main/resources/server-key.pem src/main/resources/server-cert.pem | openssl pkcs12 -export -out src/test/resources/truststore.p12 -passout pass:s3cr3t +``` Review Comment: :heart: -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
