Return-Path: Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: (qmail 11328 invoked from network); 2 Feb 2011 11:49:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Feb 2011 11:49:32 -0000 Received: (qmail 80815 invoked by uid 500); 2 Feb 2011 11:49:32 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 80615 invoked by uid 500); 2 Feb 2011 11:49:29 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Delivered-To: moderator for users@subversion.apache.org Received: (qmail 59661 invoked by uid 99); 2 Feb 2011 11:30:30 -0000 X-ASF-Spam-Status: No, hits=4.0 required=5.0 tests=FREEMAIL_FROM,FREEMAIL_REPLY,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of debajitkataki@gmail.com designates 74.125.82.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:date:message-id:subject:from:to :content-type; bh=ZB66JOOX/jlcTIb9TIbiO7KHetis0lL4tbFcjg/PS84=; b=jDNQMjk5sUSK6xfkq9N4ikcWxifqQTtw9fC52F9IyEnUCEej9TCWjPDpyNEaDBGY6Z UA7b53PAmwnOxgIv2C+n0jEvmsfYaZaJg6QR0VdWPb0rP2npufiwJAYKcWwKdVw2Tfqc t5E7PhHpuQaFCqdzHwjSMU/XEZ95DuqMcJUn0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=pevvkzhFqiY51wRa1OySDWAfbKwGBKksJ4sWb7voY8BuKrwUJJIM78KYnAbUtL06lk BX3uDxk/b7zkW8sJT+rHL4Y9HmNXxhTb6tL3qYe2YA7syavQBPz/0U3yIS7EkuOlnITN GdkYFZ8Jb3a484suMb/B1enb7PqsN5G8zCfrg= MIME-Version: 1.0 Date: Wed, 2 Feb 2011 17:00:02 +0530 Message-ID: Subject: .htaccess commit issue From: debu --- Debajit kataki To: users@subversion.apache.org Content-Type: multipart/alternative; boundary=0016367fb737541bee049b4af89a --0016367fb737541bee049b4af89a Content-Type: text/plain; charset=ISO-8859-1 Hello Friends, I have an Apache-SVN server and what i have noticed that any folder with .htaccess file or even ^.ht wont get committed in SVN. I understand that this is an expected security behavior by apache, but what I am looking here a proven workaround, so that my users can commit those folder also which has such file in it. Below is my current config: ServerAdmin debajit_kataki@gmail.com ServerName svn1.deb.com ServerAlias www.svn1.deb.com DocumentRoot "/var/www/svn/repos" Order allow,deny Deny from all Satisfy All DAV svn SVNPath "/var/www/svn/repos" AuthType Basic AuthName "Authorization Realm" AuthUserFile /var/www/svn/.htpasswd AuthzSVNAccessFile /etc/svn-acl-conf *( this is just a user/acl file and I have given r/w access as of now, so ignore) Require valid-user Options FollowSymLinks AllowOverride None Order allow,deny Allow from all ErrorLog "logs/svn1.deb.com-error_log" CustomLog "logs/svn1.deb.com-access_log" combined Any helps /advice are highly appreciated.. Thanks/- --0016367fb737541bee049b4af89a Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hello Friends,

I have an Apache-SVN server and=A0 what i have notice= d that any folder with .htaccess file or even ^.ht wont get committed in SV= N.

I understand that this is an expected security behavior by apache= , but what I am looking here a proven workaround, so that my users can comm= it those=A0 folder also which has such file in it.

Below is my current config:


<VirtualHost *:80>
=A0= =A0=A0 ServerAdmin debajit_kata= ki@gmail.com
=A0=A0=A0 ServerName sv= n1.deb.com
=A0=A0=A0 ServerAlias www.svn1.deb.com<= /a>
=A0=A0=A0 DocumentRoot "/var/www/svn/repos"
<Files ~= "^\.ht">
=A0=A0=A0 Order allow,deny
=A0=A0=A0 Deny from= all
=A0=A0=A0 Satisfy All
</Files>
<Location /repos>
=A0=A0=A0=A0=A0=A0=A0 DAV svn<= br>=A0=A0=A0=A0=A0=A0=A0 SVNPath "/var/www/svn/repos"
=A0=A0= =A0=A0=A0=A0=A0 AuthType Basic
=A0=A0=A0=A0=A0=A0=A0 AuthName "Auth= orization Realm"
=A0=A0=A0=A0=A0=A0=A0 AuthUserFile /var/www/svn/.h= tpasswd
=A0=A0=A0=A0=A0=A0=A0 AuthzSVNAccessFile /etc/svn-acl-conf=A0=A0=A0 *( this= is just a user/acl file and I have given r/w access as of now, so ignore) =
=A0=A0=A0=A0=A0=A0=A0 Require valid-user
=A0=A0=A0 </Location>=

<Directory "/var/www/svn">
=A0=A0=A0 Options FollowSymLinks
=A0=A0=A0 AllowOverride None
=A0=A0= =A0 Order allow,deny
=A0=A0=A0 Allow from all
</Directory>
<= br>=A0=A0=A0 ErrorLog "logs/svn1.deb.com-error_log"
=A0=A0=A0 = CustomLog "logs/svn1.deb.com-access_log" combined
</VirtualHost>


Any helps /advice are highly appreciated..<= br>
Thanks/-

--0016367fb737541bee049b4af89a--