Passworded anonymous access
"Steven Brown" <[email protected]> Wed, 29 Oct 2003 21:18:09 -0800
| Newsgroups | gmane.comp.gnome.mono.swt.devel |
|---|---|
| Message-ID | <001d01c39ea5$353c42c0$d7da4a42@swbrown> |
The SharpWT repository for read-only access is still unnecessarily
passworded with a username of 'anonymous' and a blank password. Could
this be removed to give normal unpassworded read-only access? It should
just be a quick delete of a few lines in the apache config. It's
causing some issues here as I've got SharpWT defined as an svn:externals
in our project so when people check out our repository, half way through
they get a prompt for a password for SharpWT which is kinda weird seeing
as they don't really need one.
As an example, here's what our chunk of config looks like. The
ActiveCampus-readers section is commented out, as that's what used to
password reading in our repository. It's probably what needs commented
out in SharpWT's:
<Location /svn/native>
DAV svn
SVNPath /home/svn/svnroot/native
AuthType Basic
AuthName "ActiveCampus native client repository access"
AuthUserFile /home/svn/svnroot/.htpasswd
AuthGroupFile /home/svn/svnroot/.htgroup
SSLRequireSSL
# <Limit GET PROPFIND OPTIONS REPORT>
# Require group ActiveCampus-readers
# </Limit>
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require group ActiveCampus-writers
</LimitExcept>
</Location>