My "low tech" hack is for setting up httpd access via the existing web
server that the MyBook uses:
Create soft-links in /usr/www/lib to whatever you want to serve up.
For example:
ln -s /shares/internal/PUBLIC /usr/www/lib/
If you want to get directory listings, open /etc/lighttpd/lighttpd.conf and add:
dir-listing.activate = "enable"
Reboot the MyBook
Browse to http://mybookworld/PUBLIC and enjoy...
Creating the soft-link did not work, I have no access to http://mybookworld/PUBLIC/ ...
Solution:
Edit /etc/lighttpd/lighttpd.conf and change the server.document-root:
server.document-root = "/shares/internal/PUBLIC/"
Reboot the MyBook
Add the following to your /etc/lighttpd/lighttpd.conf file to set auth on your Clutch directory:
auth.require = ( "/auth" =>
(
"method" => "digest",
"realm" => "nas admin",
"require" => "valid-user"
# bruce - removed user=
# "require" => "user=admin"
),
"/Clutch/" =>
(
"method" => "digest",
"realm" => "nas admin",
"require" => "valid-user"
)
This will use the same password you use to access your Mybook Webinterface.