Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 96803 invoked from network); 20 Jan 2009 05:35:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Jan 2009 05:35:27 -0000 Received: (qmail 82198 invoked by uid 500); 20 Jan 2009 05:35:16 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 82185 invoked by uid 500); 20 Jan 2009 05:35:16 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 82176 invoked by uid 99); 20 Jan 2009 05:35:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jan 2009 21:35:16 -0800 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of krist.vanbesien@gmail.com designates 72.14.220.159 as permitted sender) Received: from [72.14.220.159] (HELO fg-out-1718.google.com) (72.14.220.159) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jan 2009 05:35:06 +0000 Received: by fg-out-1718.google.com with SMTP id 16so1522347fgg.40 for ; Mon, 19 Jan 2009 21:34:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=L3U2lUFLRx2ImdJW4zqiLityYTt843kuzQijzFWob0o=; b=w7rxaP9NgNKFCE+1sqIuNORkcCsjZFi9OukCPZv7d9Otmzx8wclWUowxtaskdO5gNA f6zH1aiNXN/oVg1wYAULrbYOHMw7PhrRfmr6dOfPSWZqbvYo37kuqQQ7oFLoRZ7WHZsZ Jd2hUuTBdFRpOk7qXr/SyVYRb1sfAzpVxNTj4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=ZKXKC9Wy0YDeoz3tkOgPQ9d0zeWopd0b2OuBfSxt9BePulvtiGZsO3+PPF00T3T96m mWwizaXpnsXrgU8LIhya8NY4G0qqy960LqQ0A4N9riS8qVcpwYUfIYWArbMvYfGCjG8r hF4wRYsW+c3WfLdxd0HoOlIS8Ger6AOjjTF5k= Received: by 10.86.92.7 with SMTP id p7mr4054946fgb.54.1232429686145; Mon, 19 Jan 2009 21:34:46 -0800 (PST) Received: by 10.86.31.13 with HTTP; Mon, 19 Jan 2009 21:34:45 -0800 (PST) Message-ID: <6ed6382b0901192134je0add8by89540a101065a840@mail.gmail.com> Date: Tue, 20 Jan 2009 06:34:45 +0100 From: krist.vanbesien@gmail.com To: users@httpd.apache.org In-Reply-To: <6a611e70901192042n65dad3bdl63a2ce6c70d0b569@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6a611e70901192042n65dad3bdl63a2ce6c70d0b569@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org Subject: Re: [users@httpd] Running Apache reverse proxy on different https port On 1/20/09, ananth desh wrote: > Hi All, > I am running a reverse proxy with one public address, And there > are 3 backend servers .My question is, can i have a https port > listening on port other than the standard 443. > Basically i want to achieve this way. > https://www.abc.com:440 > https://www.xyz.com:441 > https://www.pqr.com:442 > You can do this, no problem at all. - Just ad "Listen" directives for each port you want to use. Listen 440 Listen 441 Listen 442 And then add three virtual hosts: SSLEngine On ServerName www.abc.com # Insert rest of server config here SSLEngine On ServerName www.xyz.com # Insert rest of server config here SSLEngine On ServerName www.pqr.com # Insert rest of server config here This ought to work without trouble. Krist -- krist.vanbesien@gmail.com krist@vanbesien.org Bremgarten b. Bern, Switzerland -- A: It reverses the normal flow of conversation. Q: What's wrong with top-posting? A: Top-posting. Q: What's the biggest scourge on plain text email discussions? --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org