How to create the SSL certs used for the EDR WebUI.
Before Proceeding:
To generate a new SSL certificate for the WebUI use the following commands:
1. Creating the csr and key file:
openssl req -new -newkey rsa:2048 -nodes -keyout myserver.key -out myserver.csr
2. Creating the crt using the csr and key:
openssl x509 -req -days 365 -in myserver.csr -signkey myserver.key -out myserver.crt
3. Once the new certs are in the /etc/cb/certs folder, change the cb.multihome.conf file in the /etc/cb/nginx/conf.d config to point to the new certs
4. Restart the EDR services.