Hey...
So I set up a subdomain as I would a new domain (Ubuntu/Apache) and set an A-Record to point to it.
I'm wanting to create
directplumb.perfectpixels.biz (perfectpixels.biz is already hosted)
Created A record "directplumb" points to my server IP.
VHOST:
Code:
# domain: directplumb.perfectpixels.biz
# public: /home/rob/public/directplumb.perfectpixels.biz/
<VirtualHost *:80>
# Admin email, Server Name (domain name), and any aliases
ServerAdmin me@robhadfield.co.uk
ServerName directplumb.perfectpixels.biz
ServerAlias www.directplumb.perfectpixels.biz
# Index file and Document Root (where the public files are located)
DirectoryIndex index.html index.php
DocumentRoot /home/rob/public/directplumb.perfectpixels.biz/public
# Log file locations
LogLevel warn
ErrorLog /home/rob/public/directplumb.perfectpixels.biz/log/error.log
CustomLog /home/rob/public/directplumb.perfectpixels.biz/log/access.log combined
</VirtualHost>
It appears to have resolved looking at the propagation checkers online and it pings fine too. I just get 'Server Not Found' in the browser though.
What have I missed? It's only been set up for about 4 hours but I don;t think that's the issue.
Any ideas or things I can check?
Rob