4
votes
4answers
60 views
Is it possible to override the Subversion HTML pages?
I have a subversion server, providing subversion access via Apache2 and mod_dav_svn
The system works fine and clients can access the repositories with SVN client such as TortoiseSVN etc.
Users can …
2
votes
3answers
34 views
how to configure Apache + SVN webDAV directory listing
I have an subversion server running with Apache mod_dav_svn and it works nicely but the browsing ability via HTML is a bit spartan. Is there a way to customize it at all?
There's two things I'd …
2
votes
2answers
323 views
What are the MIME types for .NET project source code files?
Are there official MIME types for the .cs (C# source), .resx, .aspx, etc. files in a .NET project?
If no official types are defined, any recommendations on good MIME types? This will be exposed via …
1
vote
3answers
170 views
How to programmaticaly build an APR1-MD5 using PHP
Much like this question I want to generate an htpasswd file entry from PHP. However it needs to be the APR1 (Apache) style, as mentioned in the original answer (The answer did not show how to …
1
vote
3answers
341 views
How to specify the repository in apache dav svn?
I have the following setup:
<VirtualHost *:80>
ServerName svn.project1.com
<Location />
DAV svn
SVNPath /svn
</Location>
</VirtualHost>
…
1
vote
1answer
718 views
Weird Apache2.2 SVN error, “Expected repository format ‘3’ or ‘5’; found format ‘9’”
I've had a repo that I would access, using TortoiseSVN, from only the same computer on which the Subversion win32 service was running, and it's been working for a while now. I decided to try to set …
1
vote
2answers
166 views
Apache Access Control
I'm trying to configure Apache to allow read only access and ask for user to write to a SVN repository when you are coming from the local network (10.*) but not allow any access unless logged in when …
0
votes
1answer
30 views
Subversion Access Control using Mysql and Apache (mod-dav-svn, mod-auth-sql, apache, mysql)
Hi, I am trying to configure a site on my Apache server to use mod_dav_svn with mysql authentication.
I am using a database with three tables like this
auth_users
----------
uid username passwd
…
0
votes
0answers
45 views
How to disable Apache log just for SVN [closed]
I have an Apache running as HTTP server and also a SVN server which is delivered by the same Apache machine.
Configured with something like
<Location /repos>
DAV svn
SVNParentPath …
0
votes
0answers
73 views
Apache memory leak with Subversion server [closed]
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 …
0
votes
0answers
195 views
LocationMatch and DAV svn
Hi,
I am trying to make our subversion repository accessible via multiple URLs. To do so, I was thinking to use the LocationMatch directive. My configuration is:
<Location ~ …
0
votes
2answers
314 views
mod_dav_svn loading error on centos 5
I am trying to install subversion on a centos VPS.
I managed to install subversion and mod_dav_svn and now I am trying to configure them.
I edited httpd.conf and added the lines:
LoadModule …
0
votes
1answer
631 views
How do I list all repositories with the SVNParentPath directive on Apache+SVN?
I'm using SVN through Apache with dav_svn_module like this:
<Location /svn>
DAV svn
SVNParentPath C:/svn_repository
AuthName "Subversion Repository"
...
</Location>
This lets me …
