enabling access to apache (wamp)
how do i edit these lines on httpd so i can view my wamp server on my local clients? (other computers in my house)
<Directory "D:/wamp/www"> ...... Order Deny,Allow Deny from all Allow from 127.0.0.1 </Directory>
0
Comments
Allow from 127.0.0.1, 192 (or whatever your local ip's are)
Deny from all
that should do it.
just realise there's another directory section on httpd.conf
is the above one the one i'm suppose to alter and not the below ones?
</Directory>
< Directory "D:/wamp/www" >
..... blah blah ....
Order Deny,Deny
Deny from All
Allow from All
< /Directory >
to
< Directory "D:/wamp/www" >
..... blah blah ....
Order Allow,Deny
Allow from All
Deny from None
< /Directory >
-drasnor
=
Allow connections from ANYONE.
Deny connections from NOBODY.
you guys do realise this deny nobody is only for my www folder on my apache2 server....
and it is running locally which i use for testing purposes only... and this machine isn't connected to the internet 24/7