OpenSSL Initial Setup
- Create a folder structure
mkdir -p certs/{ca,mid-ca,server}/{private,certs,newcerts,crl,csr}
- Change the permissions
chmod -v 700 certs/{ca,mid-ca,server}/private
- Create index files
touch certs/{ca,mid-ca}/index
- Set a serial number
openssl rand -hex 16 > certs/ca/serial
openssl rand -hex 16 > certs/mid-ca/serial
- Copy and place the configuration files