From owner-freebsd-questions@FreeBSD.ORG Wed Mar 9 21:05:45 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 450E116A4CE for ; Wed, 9 Mar 2005 21:05:45 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADABE43D4C for ; Wed, 9 Mar 2005 21:05:44 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: by wproxy.gmail.com with SMTP id 68so315080wri for ; Wed, 09 Mar 2005 13:05:44 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=YyA4Cemikf+6fJfT+ZxeD+tBWLDRIe7RWkQnBuJ54kw+/TSylOKh22UVcCXHU/FUCYfprAJ+ahrKpKyYnJ6EHLJhtswC/Ud08jJ84YrobGFwQRX5a4zs5sgxO/11hY3YwymEO3+r0Ll1QrnqEsSI4ZvdbhvjMAOhG54aJQ1TvT8= Received: by 10.54.10.39 with SMTP id 39mr1054827wrj; Wed, 09 Mar 2005 13:05:42 -0800 (PST) Received: by 10.54.72.20 with HTTP; Wed, 9 Mar 2005 13:05:39 -0800 (PST) Message-ID: <781e2bc0050309130510c07cb0@mail.gmail.com> Date: Wed, 9 Mar 2005 13:05:39 -0800 From: Benjamin Keating To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Apache2 (ports) and VirtualHosts Problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Benjamin Keating List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Mar 2005 21:05:45 -0000 I'm Running FreeBSD 5.3 and Apache2, compiled from Ports. I'm setting up a series of VirtualHosts in Apache. Apache runs fine otherwise. The vhosts that are not working are under: /data/vhosts//{www,logs}/ (where /data/ is a single filesystem on it's own harddrive). Here is a sample vhost entry: NameVirtualHost *:80 ServerName www.motionsiren.com ServerAlias motionsiren.com DocumentRoot /data/vhosts/motionsiren.com/www/ Logs go to the general log file to KISS for now. All the directories (and files) involved are executable by all. Im starting to think it's my /data filesystem because another VirtualHost, works just fine. i.e: ServerName bpk.deepdream.org DocumentRoot /usr/home/bkeating/public_html My access_log reports a 403 when i try to hit www.motionsiren.com and my error_log reports: [Wed Mar 09 13:00:37 2005] [error] [client 64.81.54.23] client denied by server configuration: /data/vhosts/motionsiren.com/www/ Any Ideas? Do I need to setup a Directory directive for /data..../? Thanks for reading.