Questions tagged [mod-dav-svn]

50 questions
5
votes
3 answers

How to grant access to "/.well-known" directory on SVN server (Apache 2.2)

I cannot figure out how to disable authentication for the .well-known directory. Things behave as expected when I remove the SVN specific directives (DAV, SVNPath, AuthzSVNAccessFile). ServerName www.example.com DocumentRoot…
Reto Höhener
  • 411
  • 3
  • 7
  • 15
4
votes
2 answers

Is it possible for the Subversion Apache module to serve html files with an html content-type without using the svn:mime-type property?

I am aware that if you set the svn:mime-type Subversion property on a .html file to text/html then when viewing the file in a browser through the Subversion module in Apache httpd it will be served with a Content-Type: text/html header, enabling the…
Martin Pain
  • 351
  • 2
  • 6
4
votes
2 answers

Subversion and mod_dav_svn: Why make www-data the owner of the files instead of root?

I've set up a dedicated Subversion server with Apache and mod_dav_svn on Ubuntu 9.10 Server, and I've got everything working fine at this point. However, I noticed that when it comes to assigning the right file permissions to the repository…
Mike Spross
  • 465
  • 1
  • 5
  • 13
3
votes
2 answers

Redirect particular subfolder under mod_dav_svn location

I am setting up an svn server using mod_dav_svn. I would like to satisfy all of the following: Collection of repositories resides at repos.example.com/ NOT repos.example.com/svn Non-svn content is available from the same server at…
2
votes
2 answers

Problems using svn merge --reintegrate (subversion 1.6.17)

I'm trying to use the Subversion merge --reintegrate feature to merge a development branch back to the project trunk. Subversion version 1.6.17 on Fedora 14. I get the following [me@fedora14 product_trunk]$ svn merge --reintegrate…
2
votes
3 answers

Apache memory leak with Subversion server

Does anyone know of a way to fix the Apache memory leak in relation to Subversion Server? We have a windows server 2003 machine running Apache to host Subversion. From day one, we have had memory leak issues and have not found a solution yet. All we…
bruce grissom
2
votes
1 answer

mod_dav_svn - two virtual hosts for the same repository

I use Apache 2 and mod_dav_svn to serve an SVN repository at https://mysite.example.com/svn/ The repository is on disk on the server at /srv/svn/repo1 It works well. I now want to allow access to the same repository via a different host name and…
David North
  • 762
  • 1
  • 5
  • 12
2
votes
1 answer

redirect sub directory of apache svn (mod_dav_svn)

I've got a mod_dav_svn apache webserver serving up a big tree of svn. I need to move a sub tree to a new server (not svn). Is there any way to use some kind of rewrite to redirect all of the sub tree so people visiting old URLs will be redirected to…
gman
  • 147
  • 1
  • 6
2
votes
1 answer

Apache: Allow directory browsing when using SVNParentPath?

I have the following setup: DAV svn SVNParentPath /home/svn/repos AuthType Basic AuthName "SVN" AuthUserFile /home/svn/.htpasswd Order deny,allow Require valid-user Users can access their svn repositories…
Jake Wilson
  • 8,494
  • 29
  • 94
  • 121
2
votes
1 answer

mod_dav_svn linked to the SVN binaries?

Apologies in advance for the possibily-incorrect terminology and probably-naïve question! Is the Apache module mod_dav_svn linked to the SVN binaries in one way or another? I am doing the initial research for an upgrade to our current 1.4.x SVN…
Rich
  • 1,333
  • 5
  • 27
  • 39
2
votes
3 answers

Where is the environment variable?

I have an apache2 server with active mod-wsgi, but I can't get the environment variable PYTHON_EGG_CACHE. Here the important lines out of my virtualhost.conf: DAV svn SVNParentPath /var/svn SVNListParentPath Off WSGIProcessGroup…
2
votes
3 answers

Setting SVN permissions with Dav SVN Authz

There seems to be a path inheritance issue which is boggling me over access restrictions. For instance, if I grant rw access one group/user, and wish to restrict it some /../../secret to none, it promptly spits in my face. Here is an example of…
StudentKen
  • 207
  • 1
  • 3
  • 10
2
votes
0 answers

Webinterface for configuring SVN access in mod_dav_svn?

we have several team members that would like to edit the AuthzSVNAccessFile for Apache2+mod_dav_svn from time to time (we have many students here which get access and later leave again). The admins are not happy if everybody can edit the config…
Philipp
  • 123
  • 3
1
vote
2 answers

How do I set up an anonymous autoversioning mod_dav_svn server?

I would like to create a DAV SVN server with autoversioning that has no access control of any kind. I experimented with several variations on this, but every one of them runs into this error in the end: "Anonymous lock creation is not allowed." So,…
Chris R
  • 523
  • 1
  • 5
  • 20
1
vote
2 answers

Unable to start Apache service after SVN upgrade

We have a Windows server running Apache 2.2. It used to have SlikSVN 1.8.x installed and we load the SVN module from httpd.conf: LoadModule dav_svn_module modules/mod_dav_svn.so We recently upgraded SlikSVN to 1.9.4, I did not have the idea to…
jpo38
  • 111
  • 6
1
2 3 4