search for: svnparentpath

Displaying 5 results from an estimated 5 matches for "svnparentpath".

2007 Sep 08
8
SVN and Rails problem
...g /usr/local/apache/domlogs/fapbox.com-bytes_log "%{%s}t %I .\n%{%s}t %O ." <IfModule !mod_disable_suexec.c> SuexecUserGroup fapbox fapbox </IfModule> ScriptAlias /cgi-bin/ /home/fapbox/public_html/cgi-bin/ <Location /svn> DAV svn SVNParentPath /usr/local/svn/repos/private AuthType Basic AuthName "Fapbox Subversion Repository" AuthUserFile /usr/local/svn/users/passwords Require valid-user </Location> RewriteEngine On # Rewrite domain.com to www.domain.com RewriteCond %{HTTP...
2006 Mar 13
9
Subversion problem - since you guys talked me into it :)
...all Options +Indexes </Directory> ErrorLog /home/corner/logs/errors.txt LogLevel notice TransferLog /home/corner/logs/access.txt </VirtualHost> <VirtualHost *:80> ServerName svn.mylittlecorneroftheinternet.com <Location /svn> DAV svn SVNParentPath /home/svnadmin/svn AuthType Basic AuthName "Subversion repository" AuthUserFile /home/svnadmin/svn-auth-file Require valid-user </Location> </VirtualHost> <VirtualHost *:80> ServerName www.yadda yadda yadda.net ... and so on for thre...
2009 Oct 11
3
SVN hell!
Hi! I'm trying to install SVN on a latest version of CentOS (5.3). I just did: yum install subversion yum install mod_dav_svn Then i edited /etc/httpd/conf.d/subversion.conf and here is the content: ======================== <Location /svn> DAV svn SVNParentPath /var/www/svn # Limit write permission to list of valid users. <LimitExcept GET PROPFIND OPTIONS REPORT> # Require SSL connection for password protection. # SSLRequireSSL AuthType Basic AuthName "SVN 1" AuthUserFile /etc/svn/svn-auth-conf...
2016 Apr 12
1
Slow authentication on C7
...E64 /etc/pki/tls/certs/CA.crt # Enable caching by mod_ldap LDAPSharedCacheSize 500000 LDAPCacheEntries 1024 LDAPCacheTTL 600 LDAPOpCacheEntries 1024 LDAPOpCacheTTL 600 <Location /ldap-status> SSLRequire true SetHandler ldap-status </Location> <Location /repos> DAV svn SVNParentPath /srv/svn/repos </Location> <Location /repos/repo1> SSLRequireSSL AuthName "SVN Repo 1" AuthType Basic AuthLDAPBindDN cn=svnbind,cn=systemusers,dc=example,dc=com AuthLDAPBindPassword plaintextpassword AuthUserFile /etc/httpd/svnpasswd AuthLDAPURL "ldaps://l...
2016 Apr 12
2
Slow authentication on C7
James Hogarth wrote: > On 12 Apr 2016 16:29, "Scott Robbins" <scottro11 at gmail.com> wrote: >> On Tue, Apr 12, 2016 at 09:45:17AM +0200, Marcin Trendota wrote: >> > W dniu 11.04.2016 o 20:07, Scott Robbins pisze: <SNIP> > After various testing I ended up going with the Apache LDAP cache module > and doing the auth at the Apache level, not system. >