From owner-freebsd-questions@FreeBSD.ORG Wed Mar 9 21:29:37 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 862C916A4CE for ; Wed, 9 Mar 2005 21:29:37 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCDC543D49 for ; Wed, 9 Mar 2005 21:29:36 +0000 (GMT) (envelope-from motionsiren@gmail.com) Received: by wproxy.gmail.com with SMTP id 70so354879wra for ; Wed, 09 Mar 2005 13:29:36 -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:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=Txst91PIHnhv/nxfnTo0nuInf5q8OT5ZTrzty/daTq7wjIV2/kx8NPV1Yf92nSoGUPN5gAa4hy1SfwGll2isyIa45m786X7OGqyrE08ZEqQ8bqqgT/Hbo8ZMx78xIi9WQQet88AuKbehshZyPMeGnzjAkZogyrgoG+PhTl6V3us= Received: by 10.54.40.2 with SMTP id n2mr921268wrn; Wed, 09 Mar 2005 13:29:36 -0800 (PST) Received: by 10.54.72.20 with HTTP; Wed, 9 Mar 2005 13:29:36 -0800 (PST) Message-ID: <781e2bc00503091329651619@mail.gmail.com> Date: Wed, 9 Mar 2005 13:29:36 -0800 From: Benjamin Keating To: freebsd-questions@freebsd.org In-Reply-To: <781e2bc0050309130510c07cb0@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <781e2bc0050309130510c07cb0@mail.gmail.com> Subject: Re: 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:29:37 -0000 SOLVED. Fixed the Apache problem... It was a directive that was needed to tell apache how to look at /data/vhosts/: Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all On Wed, 9 Mar 2005 13:05:39 -0800, Benjamin Keating wrote: > 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. >