How To install SSL Certificate on WildFly for Windows
Welcome back to by personal blog. So today i'm going to share my knowledge about SSL implementation on Wild-fly for Windows . And also I assure that you will not find any problem in this blog post. However, if there is any mistake, please post the problem in the comment section. Assumed that I have certificate.pem and the key.pem only. Both two file has .pem extension. And I used OpenSSL commands to configure ssl certificate. You can use below link for OpenSSL. it will help you to configure OpenSSL on your windows machine. How to configure OpenSSL Step 01 : You need to create .p12 file by using above public certificate and private key openssl pkcs12 -export -in (certificate.pem) -name (your_domain_name) -inkey (private_key.pem) -passin pass:(password) -out (output_file_name.p12) -passout pass:(password) openssl pkcs12 -export -in a235sdjg7235.pem -name xx.yy.com -inkey privatekey.pem -passin pass:asg32fj -out newcreatedcertificate.p12 -passout pass:asg32fj ...