Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
I also get the "Can't modify /usr/local/lib/mod_dirlisting.so's text section. Use GCC option -fPIC for shared objects, please."
The normal lighttpd works, but with ssl and/or pcre, it doesn't.
Offline
I try to set restrictions to web server acces using parameters in lighttpd.conf
#Authentication configuration
auth.debug = 0
auth.backend = "plain"
auth.backend.plain.userfile = "/mnt/HD_a2/lighttpd/lighttpd-plain.user"
# Set Restrictions:
#
# ( <left-part-of-the-url> =>
# ( "method" => "digest"/"basic",
# "realm" => <realm>,
# "require" => "user=<username>|user=<username>|valid-user" )
# )
#
# <realm> is a string to display in the dialog presented to the user
auth.require = ( "/downloads/" =>
(
"method" => "digest",
"realm" => "Web Server",
"require" => "valid-user"
)
)Of course, I've a lighttpd-plain.user file in lighttpd directory. In this file, I just put :
toto:tata
But I don't get any restriction of access to the files.
lighttpd stays wide open ... ![]()
I really to know what I've done wrong... ![]()
Artefax
Offline
As typed it should only ask for authentication when accessing the 'downloads' folder off your web root. So for example going to http://localhost will not prompt, but http://localhost/downloads will.
Is this still not the case?
Offline
...
ok, I should buy some new eyes !
Thank for yours !! ![]()
Now, it's working great.
Next step : encryption !!
thanks again.
Offline