Return-Path: X-Original-To: apmail-httpd-dev-archive@www.apache.org Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1B8F810340 for ; Mon, 30 Dec 2013 17:05:37 +0000 (UTC) Received: (qmail 28936 invoked by uid 500); 30 Dec 2013 17:05:30 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 28868 invoked by uid 500); 30 Dec 2013 17:05:30 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 28860 invoked by uid 99); 30 Dec 2013 17:05:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Dec 2013 17:05:29 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of minfrin@sharp.fm designates 174.143.229.200 as permitted sender) Received: from [174.143.229.200] (HELO chandler.sharp.fm) (174.143.229.200) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Dec 2013 17:05:21 +0000 Received: from chandler.sharp.fm (localhost [127.0.0.1]) by chandler.sharp.fm (Postfix) with ESMTP id 3C4008B80CC for ; Mon, 30 Dec 2013 11:05:00 -0600 (CST) Received: from [172.20.10.4] (unknown [41.117.72.183]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (Client did not present a certificate) (Authenticated sender: minfrin@sharp.fm) by chandler.sharp.fm (Postfix) with ESMTP id CAC2D8B80CB for ; Mon, 30 Dec 2013 11:04:58 -0600 (CST) Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 (Mac OS X Mail 6.6 \(1510\)) Subject: Re: mod_dav: Can dav be enabled in the root / location? From: Graham Leggett In-Reply-To: Date: Mon, 30 Dec 2013 19:04:53 +0200 Content-Transfer-Encoding: quoted-printable Message-Id: <531A36BB-FB15-4DE5-A3C5-3FC23A86E21F@sharp.fm> References: <30D77BDF-0618-4340-9C70-14953FB75A43@sharp.fm> <52C2E483.1060100@pearsoncmg.com> <605F6045-05AA-4CA3-BC4E-B8A783006353@sharp.fm> To: dev@httpd.apache.org X-Mailer: Apple Mail (2.1510) X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org On 30 Dec 2013, at 6:14 PM, Eric Covener wrote: > there is also a PR potentially in the same neighborhood: > https://issues.apache.org/bugzilla/show_bug.cgi?id=3D53929 >=20 > For a while I thought it was a "remove DefaultType" issue in 2.4.x but > I think that is probably wrong. A quick look at the mod_dir code shows two problems. The first is there is no way to switch mod_dir off - you add the module = that means "on". If you need the module "on" in one virtual host, but = "off" in another you're stuffed. The second is that the module seems to want to respond to all methods, = GET, POST, PROPFIND, etc when in theory it should only respond to GET. In theory, if there was a way to switch mod_dir off in directory we = could avoid the second problem in a dav virtual host. Regards, Graham --