Date: Thu, 19 Jun 2014 07:06:03 -0700 From: Chris Maness <chris@chrismaness.com> To: dweimer@dweimer.net Cc: "freebsd-questions@freebsd.org" <freebsd-questions@freebsd.org> Subject: Re: Upgraded to apache24, and now I get 403 Message-ID: <CANnsUMGuU=Ldy_yMk-aCjfHH0TqaYNWGzgT1kWgjvQE1p1MSxQ@mail.gmail.com> In-Reply-To: <4961dc615c4277b1c4790c43f8b5d9e3@dweimer.net> References: <CANnsUMHXueKRREbn7-g%2B-P_EG4XJBh=GbXrx3AewLYipdTmvfw@mail.gmail.com> <4961dc615c4277b1c4790c43f8b5d9e3@dweimer.net>
next in thread | previous in thread | raw e-mail | index | archive | help
Thanks, it is working now. Regards, Chris On Wed, Jun 18, 2014 at 11:37 AM, dweimer <dweimer@dweimer.net> 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: >> >> <VirtualHost *> >> DocumentRoot "/usr/local/www/data/chrismaness.com" >> ServerName chrismaness.com >> <Directory "/usr/local/www/data/chrismaness.com"> >> allow from all >> Options +Indexes >> </Directory> >> </VirtualHost> >> >> 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: > <http://httpd.apache.org/docs/2.4/upgrading.html> > > > <VirtualHost *> > DocumentRoot "/usr/local/www/data/chrismaness.com" > ServerName chrismaness.com > <Directory "/usr/local/www/data/chrismaness.com"> > Require all granted > Options +Indexes > </Directory> > </VirtualHost> > > -- > Thanks, > Dean E. Weimer > http://www.dweimer.net/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CANnsUMGuU=Ldy_yMk-aCjfHH0TqaYNWGzgT1kWgjvQE1p1MSxQ>