I've got a MacBook running MAMP.
I want others on my team (who are on the same network) to be able to access my local webserver so they can test their client code against my RESTful API's on my server.
I've got a MacBook running MAMP.
I want others on my team (who are on the same network) to be able to access my local webserver so they can test their client code against my RESTful API's on my server.
Just make sure you have apache listening on your local IP address or on all addresses assigned to your laptop.
It should already be setup by default to do this. Just give your coworkers your IP Address and they should be good to go.
<VirtualHost *:80>where * is present or<VirtualHost [Your actual IP]:80>. Right now, it is likely that you're binding thehttpdinstance to127.0.0.1(localhost), and/or you simply have your software firewall on. – brandeded Oct 31 '11 at 20:58:80. Also, check to make sure your firewall is allowing connections on TCP port 80. – brandeded Nov 01 '11 at 12:47