horses-eating-turnips / turnip

OpenSourcery's Drupal starter kit, with a focus on developer collaboration and reusable code.
http://www.opensourcery.com
GNU General Public License v3.0
25 stars 4 forks source link

Configure ServerName inside httpd.conf #62

Closed sheldonkreger closed 10 years ago

sheldonkreger commented 10 years ago

After Vagrant up and running the install script successfully, I don't have any sign of response from the server on either my host machine or within the VM.

Inside VM: curl -v 'http://localhost:80/'

About to connect() to localhost port 80 (#0) Trying 127.0.0.1... Connection refused couldn't connect to host Closing connection #0 curl: (7) couldn't connect to host The trick is to insert

ServerName localhost

inside /etc/apache2/apache2.conf

See

http://askubuntu.com/questions/256013/could-not-reliably-determine-the-servers-fully-qualified-domain-name

jhedstrom commented 10 years ago

Thanks!