What's new

SSL on transmission web client

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

lzkill

Occasional Visitor
Hi folks.

I've been struggling to make lighttpd act like a HTTPS proxy for the transmission web client. Could you guys take a look at my configs and say what is wrong? Whenever I try to access the HTTPS page I get redirected to the AiCloud login page with disabled fields...

services-start:
Code:
sleep 30
killall lighttpd
echo 'include "/jffs/configs/lighttpd-transmission.conf"' >> /tmp/lighttpd.conf
/usr/sbin/lighttpd -f /tmp/lighttpd.conf -D
logger SERVICES-START script: SSL proxy set for transmission daemon

lighttpd-transmission.conf:
Code:
$SERVER["socket"] == ":9079" {

    proxy.server  = ( "" =>
             (( "host" => "127.0.0.1", "port" => 9991 ))
        )
                
        server.document-root = "/opt/share/"
        accesslog.filename = "/var/log/transmission-ssl.access.log"
        ssl.engine = "enable"
        ssl.pemfile = "/opt/etc/transmission-daemon/server.pem"
}

Thanks!!!
 
Don't use the built-in lighttpd build. It's been extensively customized by Asus specifically for AiCloud's purpose.
 

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top