Cannot connect to domain despite successful pings
- by egtann
Pings to my domain name work, but I can't connect via http. I've been trying various methods for a week now, but haven't come up with anything that worked. Any idea what's causing this?
/etc/apache2/httpd.conf
ServerName machinename.local
<VirtualHost *:80>
  ServerName chipperapp.com
  DocumentRoot "/Users/myusername/appname/public"
  <Directory "/Users/myusername/appname/public">
    AllowOverride all 
    Options -MultiViews
  </Directory>
</VirtualHost>
/etc/hosts
127.0.0.1 chipperapp.com
I can access the app from my local machine, but not on any other. I've set up dynamic DNS.
Thanks!