I'm trying to get the webinterface to work through stunnel as to secure it with SSL. Reason is I want to use it when I'm away from home. The thing is: I got it to work with the following stunnnel config:
Code: Select all
; cherrypy https entry for SABnzbd
; disabled because of missing trailing slash option in cherrypy
[cherrypy]
accept = 0.0.0.0:<portnumber>
connect = <internal IP>:8080
TIMEOUTclose = 0
I know that one possibility is to 'hide' SABnzbd behind Apache 2. However, this is to be used as a last resort because I don't want to install Apache solely for this purpose.
I know of the existence of a 'module' or builtin tool called 'tools.trailing_slash' in Cherrypy (http://www.cherrypy.org/wiki/BuiltinToo ... ling_slash) which could solve this problem. However, I can not find anything in the SABnzbd or underlying directories which lets me configure this option in Cherrypy.
Is there anyone out there who got the web interface to work with stunnel properly? Any help would be greatly appreciated.