mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-12 11:20:09 +00:00
Apply patch from #1226 to allow use of certificate chain files
This commit is contained in:
parent
76fa8e707a
commit
0ae609c6df
1 changed files with 1 additions and 1 deletions
|
@ -592,7 +592,7 @@ class ServerContextFactory:
|
||||||
log.debug("Pkey: %s", deluge_web.pkey)
|
log.debug("Pkey: %s", deluge_web.pkey)
|
||||||
log.debug("Cert: %s", deluge_web.cert)
|
log.debug("Cert: %s", deluge_web.cert)
|
||||||
ctx.use_privatekey_file(configmanager.get_config_dir(deluge_web.pkey))
|
ctx.use_privatekey_file(configmanager.get_config_dir(deluge_web.pkey))
|
||||||
ctx.use_certificate_file(configmanager.get_config_dir(deluge_web.cert))
|
ctx.use_certificate_chain_file(configmanager.get_config_dir(deluge_web.cert))
|
||||||
return ctx
|
return ctx
|
||||||
|
|
||||||
class DelugeWeb(component.Component):
|
class DelugeWeb(component.Component):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue