Use StartSSL certificate with Deluge
Posted: Fri May 29, 2015 3:09 pm
Hi,
I ahve used Deluge for several years now and uses a self signed certificate. I recently implemented a real https certificate from StartSSL at my web server and though it would be nice to use one certificate from StartSSL for my Deluge WebUI to get rid of certification error all the time. I have followed this guide go get all my files needed, https://www.digitalocean.com/community/ ... e-on-a-vps and has following five files, ca.pem, private.key, ssl.crt, ssl.key, sub.class1.server.ca.pem.
Now to the tricky part I can“t solve, which file should I use as private key and which file as certificate in the Deluge config file?
EDIT
Solved my problem with just converting the files
openssl rsa -in private.key -outform PEM -out private.key.pem
openssl x509 -in ssl.crt -out ssl.pem -outform PEM
I ahve used Deluge for several years now and uses a self signed certificate. I recently implemented a real https certificate from StartSSL at my web server and though it would be nice to use one certificate from StartSSL for my Deluge WebUI to get rid of certification error all the time. I have followed this guide go get all my files needed, https://www.digitalocean.com/community/ ... e-on-a-vps and has following five files, ca.pem, private.key, ssl.crt, ssl.key, sub.class1.server.ca.pem.
Now to the tricky part I can“t solve, which file should I use as private key and which file as certificate in the Deluge config file?
EDIT
Solved my problem with just converting the files
openssl rsa -in private.key -outform PEM -out private.key.pem
openssl x509 -in ssl.crt -out ssl.pem -outform PEM