Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 95865 invoked from network); 29 Dec 2005 19:13:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 29 Dec 2005 19:13:28 -0000 Received: (qmail 32034 invoked by uid 500); 29 Dec 2005 19:13:24 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 31979 invoked by uid 500); 29 Dec 2005 19:13:23 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 31968 invoked by uid 99); 29 Dec 2005 19:13:23 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Dec 2005 11:13:23 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [207.155.248.4] (HELO repulse.cnchost.com) (207.155.248.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Dec 2005 11:13:22 -0800 Received: from [192.168.0.21] (c-24-13-128-132.hsd1.il.comcast.net [24.13.128.132]) by repulse.cnchost.com id OAA10762; Thu, 29 Dec 2005 14:13:01 -0500 (EST) [ConcentricHost SMTP Relay 1.17] Errors-To: Message-ID: <43B426E1.5070107@rowe-clan.net> Date: Thu, 29 Dec 2005 12:11:45 -0600 From: "William A. Rowe, Jr." User-Agent: Mozilla Thunderbird 1.0.7-1.1.fc3 (X11/20050929) X-Accept-Language: en-us, en MIME-Version: 1.0 To: dev@httpd.apache.org Subject: Re: Apache 2.2.0 Listen Directive References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Fenlason, Josh wrote: > Thanks for the tip, but I don't believe that's the problem. I'm working > with an almost out of the box configuration. The problem occurred when > I tried to enable mod_ssl. The only two Listen directives are in > conf/httpd.conf (Listen 80) and conf/extra/httpd-ssl.conf (Listen 443). I'm seeing more and more quirky cases, esp on Solaris, where Listen *:80 isn't your friend once multiple ip drivers become involved (as different IPs are bound to different cards). You might explicitly try Listen 127.0.0.1:80 Listen n.n.n.n:80 in place of Listen 80. Bill