Initially I was getting an exception in the window where the stream should appear. This was resolved when I correctly set up the alias to the cgi-bin for lighttpd:
Code: Select all
alias.url += (
"/zm" => "/usr/share/zoneminder/"
)
alias.url += (
"/cgi-bin" => "/usr/lib/cgi-bin/"
)
Code: Select all
ctype = (String) headers.get("content-type");
if (ctype == null) {
throw new Exception("No part content type");
}
So it seems that the stream is making it all the way to cambozola but then failing with some problem in the headers. With apache as the web server it is fine so there must be a lighttpd setting that needs to be tweaked.
Any ideas or has anyone been able to get ZM and lighttpd to work 100% on Ubuntu.
Thanks