gord wrote:

> I'm trying to get [Apache] to map my public_html directory 
> to my page.  ie... http://127.0.0.1/~gord

1. Is mod_userdir installed?  You should have something like this in
   httpd.conf.

        LoadModule userdir_module /usr/lib/apache/1.3/mod_userdir.so

2. Do you have something in httpd.conf to allow access?  Here's an
   excerpt from the default Debian httpd.conf.

        #
        # Control access to UserDir directories.  The following is an example
        # for a site where these directories are restricted to read-only.
        #
        <Directory /home/*/public_html>
            AllowOverride FileInfo AuthConfig Limit
            Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
            <Limit GET POST OPTIONS PROPFIND>
                Order allow,deny
                Allow from all
            </Limit>
            <Limit PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
                Order deny,allow
                Deny from all
            </Limit>
        </Directory>

3. Is your home directory in /home?  If not, change the above to point
   to the right directory.

4. Look in your apache error log for clues.  /var/log/apache/error.log
   or similar.

-- 
Bob Miller                              K<bob>
kbobsoft software consulting
http://kbobsoft.com                     [EMAIL PROTECTED]

Reply via email to