Hi, How can I restrict access to my local Apache web server running on my box. If anyone enters my IP address, I don't want them being able to see my files. Is there a way to restrict it so the directory can only be accessed via 'localhost'? Thanks!
In httpd.conf: <Files "*"> Order deny, allow Deny from all Allow from 127.0.0.1 192.168.0.7 </Files> Now you can access from localhost and 192.168.0.7