Tagged Questions
The mod-dav-svn tag has no wiki summary.
10
votes
1answer
6k 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 ...
5
votes
2answers
282 views
Why choose mod_dav_svn instead of svnserve & a repository browser?
Please correct me if I am wrong about my understanding of mod_dav_svn, which is that it basically serves 2 purposes:
Expose the SVN repository (on the filesystem) to clients, which can be either:
...
4
votes
4answers
238 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 ...
4
votes
2answers
934 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 ...
3
votes
2answers
196 views
How to display language syntax coloring with the DAV SVN module?
When viewing a plain text code file (i.e. ".py", ".c", ".cpp", ".m", ".as", ".js", etc.) is it possible to have the DAV SVN module render language-specific syntax coloring?
That would be amazing. ...
3
votes
3answers
575 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
4answers
2k 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
1answer
427 views
Dynamic subversion repos via subdomains (in Apache)
I'm trying to set up a subdomain-to-repository translation in Apache. Example:
foobars.domain.com -> /server/svnrepos/foobars
I've tried to get this done with mod_rewrite:
RewriteCond ...
1
vote
1answer
2k views
Subversion Access Control using Mysql and Apache (mod-dav-svn, mod-auth-sql, apache, mysql)
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
1 ...
1
vote
4answers
811 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
4answers
809 views
LocationMatch and DAV svn
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 ~ "/(svn|repository)">
...
1
vote
1answer
2k 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
277 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
73 views
Apache web server is always sending this response: 500 internal server error at HTTP POST
I am getting this error on an existing server. No configuration change. Suddenly, it happened. The log shows nothing, except something similar to the following:
10.10.10.11 - - [28/Oct/2011:01:01:08 ...
0
votes
0answers
65 views
Apache SVN subdomain assistance
I had a functioning setup where I served my SVN repo from Apache using mod_dav_svn utilizing a simple Location setup, where the repo was accessible via: https://example.com/svn. I decided I wanted to ...
0
votes
0answers
70 views
how to install mod_dav_svn without yum
I want to add http access support for subversion on a RedHat sever.
httpd and subversion are already installed but not mod_dav_svn and mod_authz_svn.
i want to ask:
1). Should i re-install httpd and ...
0
votes
0answers
122 views
mod_rewrite prevents mod_DAV_SVN access, CPanel CentOS server
0 down vote favorite
Hi, I followed the tutorial on http://sven.webiny.com/subversion-on-cpanel-3-with-centos-55-and-easyapache-32/ to allow mod_dav_svn (HTTP) access to SVN Repositories on my ...
0
votes
0answers
331 views
Problems with compiling mod_dav_svn for apache
I tried to compile mod_dav_svn for my apache, but I have the feeling, that I forget something.
First I retrieve with svn co http://svn.apache.org/repos/asf/subversion/trunk subversion the newest ...
0
votes
2answers
78 views
Possible to route to multiple subversion repositories without the need of individual virtual hosts?
I'm just wondering if it's possible, and if so could someone lead me into the right direction please?
Basically here's what my current Linux box is doing:
<VirtualHost *:443>
ServerName ...
0
votes
2answers
208 views
Problems Getting Subversion + Apache to Work
Following the instructions in this helpful guide, I've been attempting to set up Subversion on my site, using Apache instead of svnserve. Once everything is set up, I'll have a repository at ...
0
votes
1answer
119 views
How to get HTML files to find their dependencies' file paths using WebSVN?
I set up DAV SVN recently with svn:mime-type set to "text/html" on my HTML files, which allows me to see the HTML file rendered normally in the browser, instead of plain text.
However, I switched to ...
0
votes
1answer
157 views
Apache with mod_dav_svn starts to consume a lot of memory
Sometimes Apache with mod_dav_svn starts to consume a lot of memory.
Today Apache(httpd.exe) consumed about 600M.
And there was a lot of java.lang.OutOfMemoryError in Hudson when it tried to update ...
0
votes
2answers
1k 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 ...