From owner-freebsd-questions@FreeBSD.ORG Thu Jun 19 14:06:04 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D9E6F6D2 for ; Thu, 19 Jun 2014 14:06:04 +0000 (UTC) Received: from mail-vc0-x234.google.com (mail-vc0-x234.google.com [IPv6:2607:f8b0:400c:c03::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 99315243D for ; Thu, 19 Jun 2014 14:06:04 +0000 (UTC) Received: by mail-vc0-f180.google.com with SMTP id im17so2245910vcb.39 for ; Thu, 19 Jun 2014 07:06:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=b+IpsgsCE82M2yZMCAkTN/rPggJEOzgcGe6wKmtUyas=; b=LK0p27SrpaoBcDPcTxuqsV4h5zGpq4GydWvQNKSaPLCXgcXHybUXZDkck16Pqq+p5r kDYIDYsJtzE4ZnFjWZEVc6Bnx7UEwfsCrAUxiKn+SAzHsnB8zky3hb0rz16vErfDYJWw rQt0UGQKgL7I+Q4CmsUuoV1aegqnacyz1oyz1A1W8AB9RRvh4VkvaJQN1vL0xz/H7ZGS I0Vo7mvwowaHjXdR8urjBDiYH5hlUKEL0zSSoiSeHqSkN0SmwGqyqGh3D6D+FxWaLXak XE6EgfexKO7zTfMnoxXRG627Ebs3D/8GUVKCoAGzY36XtHZYqcdbPE+34rLzdCI/WhCT hDFQ== MIME-Version: 1.0 X-Received: by 10.58.22.130 with SMTP id d2mr460266vef.55.1403186763613; Thu, 19 Jun 2014 07:06:03 -0700 (PDT) Sender: christopher.maness@gmail.com Received: by 10.58.191.35 with HTTP; Thu, 19 Jun 2014 07:06:03 -0700 (PDT) In-Reply-To: <4961dc615c4277b1c4790c43f8b5d9e3@dweimer.net> References: <4961dc615c4277b1c4790c43f8b5d9e3@dweimer.net> Date: Thu, 19 Jun 2014 07:06:03 -0700 X-Google-Sender-Auth: IHbQ6RyJiz4eu3YOpYSTWgN6UbI Message-ID: Subject: Re: Upgraded to apache24, and now I get 403 From: Chris Maness To: dweimer@dweimer.net Content-Type: text/plain; charset=UTF-8 Cc: "freebsd-questions@freebsd.org" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jun 2014 14:06:04 -0000 Thanks, it is working now. Regards, Chris On Wed, Jun 18, 2014 at 11:37 AM, dweimer wrote: > On 06/18/2014 12:34 pm, Chris Maness wrote: >> >> I had a pretty complicated apache config before. I just upgraded to >> 2.4, and I am only really using one simple website now. When I try to >> access the page I get a 403 forbidden. >> >> Here is my virtual host directive: >> >> >> DocumentRoot "/usr/local/www/data/chrismaness.com" >> ServerName chrismaness.com >> >> allow from all >> Options +Indexes >> >> >> >> The rest of the http.conf is stock from a fresh apache24 install. >> >> Thanks, >> Chris >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to >> "freebsd-questions-unsubscribe@freebsd.org" > > > It has to do with the Apache 2.4 permission changes, try the following > instead, and look here for more information: > > > > > DocumentRoot "/usr/local/www/data/chrismaness.com" > ServerName chrismaness.com > > Require all granted > Options +Indexes > > > > -- > Thanks, > Dean E. Weimer > http://www.dweimer.net/