I have an svn set up on Debian 6
I have access on http://myserver/svn/youfood/, I can checkout from Netbeans but when i try to commit, still from Netbeans, i have these errors :
Netbeans Log
svn: OPTIONS of '/svn': 403 Forbidden (http://myserver)
Apache Log
[error] [client x.x.x.x] The URI does not contain the name of a repository. [403, #190001]
Here's my differents conf :
mods-available/dav_svn.conf
56 <Location /svn>
57 DAV svn
58 SVNParentPath /home/svn
59 AuthType Basic
60 AuthName "Subversion Repository"
61 AuthUserFile /etc/apache2/svn.passwd
62 AuthzSVNAccessFile /etc/apache2/authz
63
64 Require valid-user
65
66 #SSLRequireSSL
67 </Location>
sites-available/youfood
[...]
43 # SVN & TRAC
44 <Location /svn>
45 DAV svn
46 SVNParentPath /home/svn/
48 SVNAutoversioning on
49 AuthType Basic
50 AuthName "Subversion Repository"
51 AuthUserFile /etc/apache2/svn.passwd
52 Require valid-user
54 </Location>
55
56 <Location /trac>
57 SetHandler mod_python
58 PythonHandler trac.web.modpython_frontend
59 PythonOption TracEnvParentDir /home/trac/
60 PythonOption TracUriRoot /trac
61 AuthType Basic
62 AuthName "Trac"
63 AuthUserFile /etc/apache2/svn.passwd
64 </Location>
/etc/apache2/authz
21 [groups]
24 dev = user1, user2, user3, user4
25 admin = user1
35
36 [/]
37 @admin = rw
38 * = r
39
40 [youfood:/]
41 @dev = rw
42
43 [/home/svn/youfood]
44 @dev = rw
Thanks for your help