Return to BSD News archive
Path: euryale.cc.adfa.oz.au!newshost.carno.net.au!harbinger.cc.monash.edu.au!munnari.OZ.AU!news.Hawaii.Edu!news.lava.net!coconut!www.nntp.primenet.com!nntp.primenet.com!news-feed.inet.tele.dk!news.maxwell.syr.edu!worldnet.att.net!cpk-news-hub1.bbnplanet.com!news.bbnplanet.com!mindspring!uunet!in2.uu.net!207.115.134.241!newsfeed.gte.net!news From: gary brant <gbrant@gte.net> Newsgroups: comp.unix.bsd.freebsd.misc Subject: Re: HELP With APACHE User Home Pages.. Date: Sun, 09 Mar 1997 11:56:19 -0600 Organization: Gage Lines: 30 Message-ID: <3322F9C3.6739909@gte.net> References: <331F52D9.2A47@connect.cybersmith.com> NNTP-Posting-Host: 206.124.89.146 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 3.01 (X11; I; Linux 2.0.29 i586) Xref: euryale.cc.adfa.oz.au comp.unix.bsd.freebsd.misc:36804 CARL THEVENIN2 wrote: > > Hi all, > What I want to do is simple "Well, not to me.". I want to allow users > on my FreeBSD System to have their own web site. I am currently using > Apache v 1.1.3. I have an account name carlt. I added an Index.html file > in that account, wich is suppose to be my personal site.. So I > http://younew.media.mit.edu/~carlt . Got nothing. I got a "File Not > found > > The requested URL /~carlt was not found on this server." .... How do I > set up Apache to do so.. I checked the web site, but there is no luck.. > I am stuck.. Could someone help me with this please....... > > Thanks in Advance... Sorry if this has already been answered but I am days behind reading this group. You need to add at the bottom of the access.conf file: <Direcory /home/*> Options Indexes ExecCGI FollowSymLinks </Directory> ExecCGI allows user CGI scripts, omit this if you don't want to allow it. Likewise FollowSymLinks. Indexes is minimum needed to see user home pages. -Gary Brant