I\'ve a subdomain that I only want to be accessible internally; I\'m trying to achieve this in Apache by editing the VirtualHost block for that domain. Can anybody see where I\'
You're missing the Deny from all line? Oh, and using the wrong order.
Deny from all
order
Quoting the mod_access docs:
[...] all hosts in the apache.org domain are allowed access; all other hosts are denied access. Order Deny,Allow Deny from all Allow from apache.org
[...] all hosts in the apache.org domain are allowed access; all other hosts are denied access.
Order Deny,Allow Deny from all Allow from apache.org