Personal WebServer | Need Help

I was making my own personal web server with a lot of the bells whistles such as mysql and php ftp and so on, or my family. I just wish to get down a dirty so to say, I would like to setup this server all by my self not like the servers I have online.

I ran into a few things when I was trying to setup the public_html in the user home dir

This is what I got in the httpd.conf

Code:
<IfModule mod_userdir.c>
    #
    # UserDir is disabled by default since it can confirm the presence
    # of a username on the system (depending on home directory
    # permissions).
    #
    #UserDir disable
     UserDir public_html

    #
    # To enable requests to /~user/ to serve the user's public_html
    # directory, remove the "UserDir disable" line above, and uncomment
    # the following line instead:
    # 
    #UserDir public_html

</IfModule>

#
# 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>
        Order allow,deny
        Allow from all
    </Limit>
    <LimitExcept GET POST OPTIONS>
        Order deny,allow
        Deny from all
    </LimitExcept>
</Directory>
when I type http://IP/~user ie http://192.168.0.100/~mike

I get a 403 error, I checked the permissions and they seem to be right the public_html chmod is set to 775.

Server is running fedora core 1, 2.0 apache, webmin, usermin, virtualmin.

 

 

 

 

Top