If it is possible, what is the best means of restricting access to a server running on XAMPP to only a local network - like, say, a bunch of computers in an office?
This post has been edited by Travelsonic: 14 August 2013 - 11:01 AM

Posted 14 August 2013 - 11:00 AM
Posted 14 August 2013 - 01:28 PM
Posted 15 September 2013 - 10:13 AM
Posted 15 September 2013 - 12:50 PM
Posted 15 September 2013 - 07:56 PM
Posted 01 October 2013 - 12:09 PM
Posted 04 October 2013 - 09:31 PM
Travelsonic, on 01 October 2013 - 12:09 PM, said:
<Directory / (or wwwroot or public_html)> # tell apache to deny users first, allow based on rules order deny,allow # allow from every IP from 192.168.0.1 - 192.168.255.255 (I think) allow from 192.168.0.1/8 # deny everyone else deny from all # if you want a special error page ErrorDocument 403 /403.htm </Directory>