I have setup the following virtual host
ServerAdmin
[email protected]
ServerName mysite.com
ServerAlias www.mysite.com
DocumentRoot /var/www/homepage/public_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
When I hit my url Apache still shows the default page. Not the index Ive created in the give Document root.
In my Domain i have set the A Record to the Ip of my VPS:
apache2ctl -S:
output:
VirtualHost configuration:
*:80 is a NameVirtualHost
default server xxxxxx.stratoserver.net (/etc/apache2/sites-enabled/000-default.conf:1)
port 80 namevhost xxxxxxx.stratoserver.net (/etc/apache2/sites-enabled/000-default.conf:1)
port 80 namevhost mysite.com (/etc/apache2/sites-enabled/homepage.conf:1)
alias www.mysite.com
ServerRoot: "/etc/apache2"
Main DocumentRoot: "/var/www"
Main ErrorLog: "/var/log/apache2/error.log"
Mutex default: dir="/var/lock/apache2" mechanism=fcntl
Mutex mpm-accept: using_defaults
Mutex watchdog-callback: using_defaults
PidFile: "/var/run/apache2/apache2.pid"
Define: DUMP_VHOSTS
Define: DUMP_RUN_CFG
User: name="www-data" id=33 not_used
Group: name="www-data" id=33 not_used
How would I need to setup my Virtual host so that apache shows the correct site depending on the Domain im redirecting from.