[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Apache + SSL + DAV , Problem allow Locks

From: Manfred Linzner <manfred.linzner_at_gmail.com>
Date: 2006-11-20 09:12:59 CET

Hi!

I'm want to host a Subversion Server on my already running
Linux Server (Debian Etch).

So I installed Apache2 (2.0.54), SSL (0.9.7), DAV, SVN (1.1.4) and
configured it. But now I have a problem. Basically the important
 things like checkout, checkin, ... works perfectly but when
I want to lock a file I get this message:

Error: Lock request failed: 405 Method Not Allowed

I'm not sure if this is a problem from DAV, Apache or any other
program.

My configuration files:

/etc/apache2/sites-available/subversion
--------------------------------------------------------------------------------
<VirtualHost *:443>
     ServerAdmin r***@****
     ServerName server
     ServerAlias *************
     SSLEngine On
     SSLCertificateFile /etc/apache2/ssl/Apache2.pem
     <Location /svn>
         Order allow,deny
         Allow from all
         DAV svn
        SVNParentPath /svn/repos
         AuthzSVNAccessFile /etc/apache2/auth-files/public-svn-authzfile
        Satisfy Any
         Require valid-user
        AuthType Basic
         AuthName "Subversion Repository"
         AuthUserFile /svn/.dav_svn.passwd
      </Location>
ErrorLog /var/log/apache2/svn_error.log
 LogLevel warn
 CustomLog /var/log/apache2/svn_access.log combined
</VirtualHost>
--------------------------------------------------------------------------------

 /etc/apache2/auth-files/public-svn-authzfile
--------------------------------------------------------------------------------
# Repositories configuration

# Main repository. Only owner (LinznerM) will be able to add new \
repositories
[/]
LinznerM = rw

# Repository`s WuW - accessible only for users of developer \
group. No external access.
[wuw:/]
LinznerM = rw
GrandlD = rw
HaiderD = rw
PichlerW = rw
--------------------------------------------------------------------------------

Hope somebody could help me!

Thanks in forward.
Manfred

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Nov 20 09:13:40 2006

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.