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:
lighttpd-transmission.conf:
Thanks!!!
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!!!