A bit of a different note
you might want to change this part
Quote:
AllowOverride All
Order allow,deny
Allow from all
|
that makes the folder open to the WHOLE wide world .Not just the lan but EVERYONE in the world
something like ---
Code:
Order deny,allow
Deny from all
Allow from 123.456.789.012
replace "123.456.789.012" with the address of the lan
see the Apache documents Vhost section
http://httpd.apache.org/docs/2.4/vhosts/