From owner-freebsd-questions@FreeBSD.ORG Wed Mar 15 19:38:48 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D687F16A401 for ; Wed, 15 Mar 2006 19:38:48 +0000 (UTC) (envelope-from iaccounts@ibctech.ca) Received: from pearl.ibctech.ca (pearl.ibctech.ca [209.167.58.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54A3E43D48 for ; Wed, 15 Mar 2006 19:38:46 +0000 (GMT) (envelope-from iaccounts@ibctech.ca) Received: (qmail 43098 invoked by uid 1002); 15 Mar 2006 19:38:44 -0000 Received: from iaccounts@ibctech.ca by pearl.ibctech.ca by uid 89 with qmail-scanner-1.22 (spamassassin: 2.64. Clear:RC:1(209.167.16.15):. Processed in 1.703914 secs); 15 Mar 2006 19:38:44 -0000 Received: from unknown (HELO xzibit) (209.167.16.15) by pearl.ibctech.ca with (RC4-MD5 encrypted) SMTP; 15 Mar 2006 19:38:42 -0000 From: "Steve Bertrand" To: "'eoghan'" Date: Wed, 15 Mar 2006 14:38:56 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcZIZyLXMNseyY7DSSq+h/7nBlBcOgAAJNnw In-Reply-To: <44186B85.5010007@redry.net> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Qmail-Scanner-Message-ID: <114245152367543092@pearl.ibctech.ca> Message-Id: <20060315193846.54A3E43D48@mx1.FreeBSD.org> Cc: freebsd-questions@freebsd.org Subject: RE: hosts file X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 19:38:48 -0000 > Yes, mine reads: > ::1 localhost nathaniel > 127.0.0.1 localhost nathaniel > Upon starting apache, i can only get to it by using the ip. > 127.0.0.1 wont work either. I just get the unable to connect > message from the browser. Any ideas? Under the Listen directive in your httpd.conf file, are you binding Apache to a single IP? Mine reads: Listen 80 Which means listen on port 80 on all IP's. If you have an entry as such: Listen 123.456.789.111:80 It will listen on port 80 on ONLY that IP, and ignore all other requests, including localhost/127.0.0.1. Regards, Steve