How to install letsencrypt free ssl to Glassfish
Created 17/10-2017 by Michael Bornholdt Nielsen
Working with certificates
Create a self-signed SSL Certificate with OpenSSL
openssl genrsa -out key.pem 2048 openssl req -new -key key.pem -out csr.pem openssl req -x509 -days 365 -key key.pem -in csr.pem -out certificate.pem
Created 07/03-2016 by Michael Bornholdt Nielsen