On Wed, May 04, 2005 at 09:04:38AM -0400, Buddy Shearer wrote:
> All is loaded and configured according to available docs.  When I try to
> bring up the web site for the first time it tells me Forbidden.

Right let's steer away from the whole Gentoo whatever thing, because
this has nothing at all to do with compiling.

Forbidden means one of two things:
  1) The user your Apache server runs as is not allowed to read this
     file, your standard Unix chmod,chown and friends help here.
  2) The permission structure *within* Apache is not allowing it, this
     is all the <Directory ... > clauses in the Apache config.

> I have tried chown and chmod but I am definately missing something and it is
> probably obvious.
That's thing #1, so it must be #2. But, also check. su to the www-data
or whatever Apache runs as and try to cat the file, also try to
ls -l the directory.

The Apache error log will give you the reason, from the small amount I
know about FreeBSD it has a policy of locking down hard, even more than
Debian which is saying something. A fine policy, but it can bite you
such as now.

I'd be sure that they would not allow any access outside the
DocumentRoot directory, a sensible default really.

Something like this may help, assuming you have JFFNMS installed under
/opt/jffnms

<Directory /opt/jffnms/htdocs>
        Options Indexes
        AllowOverride Node
        Order allow,deny
        Allow from all
</Directory>

 - Craig
-- 
Craig Small      GnuPG:1C1B D893 1418 2AF4 45EE  95CB C76C E5AC 12CA DFA5
Eye-Net Consulting http://www.enc.com.au/   MIEE         Debian developer
csmall at : enc.com.au                      ieee.org           debian.org


-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
_______________________________________________
jffnms-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jffnms-users

Reply via email to