Edgewall Software

Changes between Version 3 and Version 4 of TracFeisty


Ignore:
Timestamp:
Oct 5, 2007, 8:51:03 PM (17 years ago)
Author:
ahunn
Comment:

Added trailing slash to Location directive to prevent 403 errors when listing via SVNListParentPath.

Legend:

Unmodified
Added
Removed
Modified
  • TracFeisty

    v3 v4  
    4141
    4242 {{{
    43  <Location /svn>
     43 <Location /svn/>
    4444  DAV svn
    4545  SVNParentPath /svn
    46 
    47   ####### BASIC
     46  #Provides dirctory listing of repositories
     47  SVNListParentPath On
     48
    4849  AuthType Basic
    49 
    5050  AuthName "Subversion Repository"
    5151  AuthUserFile /etc/apache2/dav_svn.passwd
     
    101101 }}}
    102102
    103  We can now point a browser to http://localhost/svn/teste and an authentication pop-up should appear and, after that, our repository. It is a good time to read some more on the "Per-Directory Access Control" part of the subversion book. One part of the security involved in this installation only has to do with Subversion so some reading on [http://svnbook.red-bean.com/en/1.0/svn-book.html#svn-ch-6-sect-4.4.2 Per-Directory Access Control] might be useful at this time.
     103 We can now point a browser to http://localhost/svn/teste and an authentication pop-up should appear and, after that, our repository. You should also be able to navigate to http://localhost/svn/ and view a listing of all repositories. Now is a good time to read some more on the "Per-Directory Access Control" part of the subversion book. One part of the security involved in this installation only has to do with Subversion so some reading on [http://svnbook.red-bean.com/en/1.0/svn-book.html#svn-ch-6-sect-4.4.2 Per-Directory Access Control] might be useful at this time.
    104104
    105105