Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
Hej,
I'm running a Lighttpd on a chroot'ed Etch on my DNS323.
All works fine, however I'm trying to get a WebDAV directory to run.
With NO auth, it works fine, but with authentication I do get an error
while connecting with MacOSX (SnowLeopard) (also with w2k)
But with a test from Linux - cadaver - it works fine.
Someone has an idea?
Stefan
HTTP["url"] =~ "^/test($|/)" {
dir-listing.activate = "enable"
webdav.activate = "enable"
webdav.is-readonly = "disable"
auth.backend = "htpasswd"
auth.backend.htpasswd.userfile = "/etc/lighttpd/passwd.dav"
auth.require = ( "" => ( "method" => "basic",
"realm" => "test",
"require" => "user=test" ) )
}
Offline