dsullinger
MIS
I've setup a OpenSUSE 10.1 box as a file/web server in our home. I've got all the shares setup using everyones /home/ directories and the Apache server is working fine.
I would like to create a directory in each users Home as /home/user/ the create a virtual redirector to each persons directory so they can create web pages inside their own home directory.
I placed the following in the /etc/apache2/default-server.conf file:
Alias /user/ "/home/user/
<Directory "/home/user/ Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
When I point my browser to I get an error 403, Access Forbidden.
Any thoughts?
I would like to create a directory in each users Home as /home/user/ the create a virtual redirector to each persons directory so they can create web pages inside their own home directory.
I placed the following in the /etc/apache2/default-server.conf file:
Alias /user/ "/home/user/
<Directory "/home/user/ Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
When I point my browser to I get an error 403, Access Forbidden.
Any thoughts?