Use StartSSL certificate with Deluge

General support for problems installing or using Deluge
Post Reply
calleboy
New User
New User
Posts: 5
Joined: Fri Feb 25, 2011 9:20 pm

Use StartSSL certificate with Deluge

Post by calleboy »

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
Funkii

Re: Use StartSSL certificate with Deluge

Post by Funkii »

Hi,

I'm actually in the same case as you were calleboy.
I've got all these file generated from startSSL, but the tutorial was for Apache2 (it works fine by the way).
But since deluge seems to use it's own http server (maybe i'm wrong), i tried to use my generated keys to works with deluge. Without success.
I Tried your solution in the "Edit" part, doesn't work either.
I've searched everywhere, and most of the "solution" are fort self generated ssl keys, which is not actually the case.
So if someone could lead me step by step or with more details than described on the previous post, it would be nice.
Thank you.

EDIT : My bad, i'm stupid. The solution provided on the previous post works perfectly, i just forgot to stop the daemon everytime i changed the conf file.
Post Reply