I have a basic Apache2 configuration, with only one VirtualHost enabled. I've set the DocumentRoot and the Directory to reference the index directory of the website I would like to display, however when I bring up the server index in a browser, it points to /home/user/public_html rather than /home/user/public_html/website
Is this somehow intended or is my setup incorrect?
Here's the virtualhost setup:
DocumentRoot /home/user/public_html/website
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
Alias /doc/ "/usr/share/doc/"
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
Comments
Post a Comment