>
> How can i make it work? And is that forwarding source address 0.0.0.0
> correct? I don't have any virtual hosts (domains), or forwarders or
> masquerading or nothing. Just old plain simple configuration.
>
> Can anyone help me, please? The documentation isn't!!!
It's an Apache configuration problem. You don't have a rule that allows
you to access the page you want.
I've just setup 1.3.13 on RHL 6.x. It's set up to allow access to /usr/doc
at http://localhost/doc/
I had to change mine a little because most of my http fetches go to
another host (proxy) and localhost there is different. So I have this:
# Allow access to local system documentation from localhost
Alias /doc/ /usr/doc/
<Location /doc>
order deny,allow
deny from all
allow from localhost
allow from .os2.ami.com.au
Options Indexes FollowSymLinks
</Location>
Note the 'allow from' it's probably something of this kind that is
stopping you.
--
Cheers
John Summerfield
http://os2.ami.com.au/os2/ for OS/2 support.
Configuration, networking, combined IBM ftpsites index.
--
To unsubscribe:
mail -s unsubscribe [EMAIL PROTECTED] < /dev/null