Hi there,
I'm gonna answer here it is more appropriate.
First of all i'm not familiar with windows specifics, maybe someone could correct or enhanced my answer.
Whatever I'll try to explain the basics steps.
1. Get a certificatea certificate is a proof, signed by someone of trust, that you are the guy you say you are. We don't need it to encrypt things, we need it for your browser to get happy.
To get one you can:
- pay
geotrust, verisign, globalsign, ... (yeaa those are the guys of trust we were talking about.. they love money very much, they really do and imho cannot really be trusted but... you know.. they are the browsers of your navigator.. so.. all that stuff is big family business. Ok. stop joking)
In this case, technically, it's your payment (name on the credit card) that authentify you.
Once done just download your cert files and your done - use something like letsencrypt (free)
We are talking about computers here, so technically we only want to be sure that the guy that own a domain is really the guy that brought the website you try to navigate to.
To do so, we make a request to lestsencrypt that will contact your server using public DNS record and check that a secret string is there.
You will find some clients for windows here
https://letsencrypt.org/docs/client-options/Try to find something that match the prerequisite with Windows 8. Before to download anything check the .Net framework versions available on your platform. Powershell version.. etc. Note that we do not need IIS integration, Subsonic integrated his own webserver. We only want the certificate generation functionality.
GUI version could be attractive but imho it's a trap. We need very simple things that can be accomplished in one line (with eventually useful error messages). GUI will probably be has simple to manipulate has a panel control of a nuclear power plant, full of bugs, with no error report. Whatever, its up to you and in anyway.. you have to get it done.
2. Get it in something usefulNow that we got the cert we need to make it usable for us. As you already know it is the pks12 thing.
Multiples tutos to do that. This one looks good
https://www.tbs-certificates.co.uk/FAQ/en/288.html (openssl)
Note that you really don't want to use online converters, doing so is equal to give them your certificate.
I mean your private key is private, really private. No one has to access it.
Ever.
3. Get your cert in subsonicTo do so we need to prepare and package the cert the java way. (keytool is provided with java and can be find @ something like C:\Program Files\Java\jdk1.8.0_121\bin)
- Code: Select all
keytool -importkeystore -srckeystore /your/cert/path/www.foobar.org.pkcs12 -srcstorepass subsonic -destkeystore /your/cert/path/subsonic.keystore -deststorepass mypass --srcstoretype PKCS12 -srcalias 1 -destalias subsonic
then add it to subsonic
- Code: Select all
zip /your/path/to/subsonic/subsonic-booter-jar-with-dependencies.jar /your/cert/path/subsonic.keystore
Restart subsonic and your done.
good luck
jo