Thanks for the suggestion bathory, but I'm not using user directories. I'm trying to modify where the documents are stored at the high level.
Now I've taken a different approach and came up with some interesting results. I left the global DocumentRoot and Directory alone. I added the following in the VirtualHost section:
Code:
<VirtualHost *:80>
ServerName www.gunrdev.com
ServerAlias gunrdev.com *.gunrdev.com
DocumentRoot "/public_html/www"
<Directory "/public_html/www">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
ErrorLog logs/www.gunrdev.com-error_log
LogLevel debug
CustomLog logs/www.gunrdev.com-access_log common
</VirtualHost>
Now apache will start, but I get the good old 403 error. However, like I've said before, the permissions for /public_html and /public_html/www are 755. The actual error message is as follows:
Quote:
Forbidden
You don't have permission to access / on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
|