Displaying 2 results from an estimated 2 matches for "authdigestprovid".
Did you mean:
authdigestprovider
2007 Oct 31
2
Managing apache authentication
...or each of the websites.
Does this make sense? (It works...) Can I "override" as in OO parlance
apache2::site in reahlapache::site instead?
Question 2
==========
We enable webdav on these sites for the client to be able to upload
files. And for this we use the apache settings:
AuthDigestProvider file
AuthUserFile /somefilesomewhere
Which means that we need to create /somefilesomewhere and populate it
using invocations of "htdigest realm username" (which will ask for a
password and store a hash of it in the file it seems).
It would be nice if I can specify a list of do...
2014 Jan 21
0
Apache Directory Level access control
...has been
granted in a higher one? We restrict access to the entire site via htdigest
but some directories are need to be further restricted by the group a user is
assigned to. I have this situation:
<Directory />
AuthType Digest
AuthName ca.harte-lyne
AuthDigestDomain /
AuthDigestProvider file
AuthUserFile /etc/httpd/access.d/.htdigest
AuthGroupFile /var/data/hll_dav/htgroup
Require group staff
AllowOverride None
Order allow,deny
allow from all
Satisfy All
Options Indexes MultiViews
IndexOptions FancyIndexing
AddDefaultCharset UTF-8
</...