#============================================= # Subversion and WebDAV Section: # Refer to mod_dav, mod_dav_svn, mod_dav_fs) in server-info. # Subversion repositories: DAV svn # Any "/svn/foo" URL will map to a repository /home/www/svn/foo SVNParentPath /home/wwwrun/webdav/svn AuthType Basic AuthName "SVN Repository" AuthUserFile /etc/apache2/basicHTTPpasswd Require valid-user # WebDAV (Windows Web Folders): Alias /fs "/home/wwwrun/webdav/fs" DAV filesystem Options Indexes AuthType Basic AuthName "WebDAV Web Folder" AuthUserFile /etc/apache2/basicHTTPpasswd Require valid-user Order allow,deny Allow from all DavLockDB /var/lock/apache2/DavLock #============================================= # ViewCVS (ViewVC) Section: # ViewCVS scripts: AllowOverride None Options +ExecCGI Order allow,deny Allow from all # ViewCVS (ViewVC) location to view Subversion repositories: ScriptAlias /viewcvs /srv/viewcvs/www/cgi/viewcvs.cgi AuthType Basic AuthName "ViewCVS" AuthUserFile /etc/apache2/basicHTTPpasswd Require valid-user # Query tool requires mySQL? query.cgi; exits w/error at the moment: # ScriptAlias /query /srv/viewcvs/www/cgi/query.cgi # Documentation and CSS files: Alias /viewcvs-docroot "/srv/viewcvs/templates/docroot" Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all