Thanks, guys! I have it up an running, but it looks like I should add some lines to handle exceptions and fix some permissions.
Couple more questions I ran across when looking at some HowTos...
Is there anything that needs to be added to the main apache2.conf file to enable virtual hosts or can I just add sites to the /sites-available from a fresh install?
One article says I need to create a file...
/etc/apache2/conf.d/virtual.conf
and put the following statement in the file...
Code:
# We're running multiple virtual hosts.
#
NameVirtualHost *
#
Another article says I need
Code:
NameVirtualHost <ip>:<Port Number>
In the /etc/apache2/apache2.conf file.
Now I added both of these statements, but noticed that I do the same thing in my virtual host files that are stored in /sites-enabled
What is the correct location to add these statements?