How do I install a CA-signed certificate in OWIN?
owin, self-hosting, ssl, ssl-certificate
Solution
Figured out my problem (though, I don't know if it will help anyone else if they encounter this). Turns out GoDaddy's "Download Certificate" page only downloads certificates without the private key. I had to export the certificate previously imported by IIS, then import it into my Personal store. I assume there's a way to get the private key w/o importing into IIS, but I personally don't know what it is (maybe I just missed a step somewhere this time around).
Problem
I have a certificate from GoDaddy, which I've previously used for an IIS hosted website. I've now converted the site over to an OWIN self-hosted WebAPI project and would like to use the same certificate for the new site on a brand new machine. Do I need to install IIS just to import the certificate or is there a way to import it directly into the certificate store like you can with self-signed certificates? Or does this need to be handled directly in the new OWIN project somehow?