Hello,
I have an existing wildcard ssl certificate which I'm using for our domain for various services (mail server through ClearOS, ownCloud). I want to add this wildcard cert to my ejabberd server.
I have my two private keys:
mycert.crt
mycert.key
and my public:
comodo-interbundle
That's all I've got and they've been working fine when I add them to my ClearOS server and my ownCloud Server (ubuntu 14.04).
I've now installed ejabberd on ubuntu 14.04 and I want to add this same wildcard cert to this server. Every google search I see references to .pem files and intermediate certs. I don't have these types of files.
Any advice you can provide to me on how I create this .pem file or if I need the intermediate cert would be greatly appreciated.
Thank you.
to create the .pem file you
to create the .pem file you can do something like this:
cat private.key >> ejabberd.pem cat certificate.pem >> ejabberd.pem cat chain-1.pem >> ejabberd.pem cat chain-2.pem >> ejabberd.pem
source:https://raymii.org/s/tutorials/Ejabberd_SSL_Certificate.html