Cannot connect to domain despite successful pings

Posted by egtann on Server Fault See other posts from Server Fault or by egtann
Published on 2012-04-04T16:21:53Z Indexed on 2012/04/04 17:31 UTC
Read the original article Hit count: 152

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!

© Server Fault or respective owner

Related posts about apache2

Related posts about ruby-on-rails