Return-Path: X-Original-To: apmail-tomcat-users-archive@www.apache.org Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A179B923E for ; Thu, 16 Feb 2012 11:31:04 +0000 (UTC) Received: (qmail 24142 invoked by uid 500); 16 Feb 2012 11:31:01 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 24075 invoked by uid 500); 16 Feb 2012 11:31:01 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 24066 invoked by uid 99); 16 Feb 2012 11:31:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Feb 2012 11:31:01 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of andriu.one@gmail.com designates 74.125.82.173 as permitted sender) Received: from [74.125.82.173] (HELO mail-we0-f173.google.com) (74.125.82.173) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Feb 2012 11:30:53 +0000 Received: by werh12 with SMTP id h12so1716056wer.18 for ; Thu, 16 Feb 2012 03:30:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; bh=oo6Gp0zhoa1rV/DbwCjMGuC3DiqTHfu+cXMW04lhQnQ=; b=Ou8uR/LMdDkZ4pu7cn9jsAHl68HktR+o49ESAK/kns8bigyo9HXu5l7ReNbEBR8pGF xowLlzM8begSUWffKIrgRLF0qt4fNRlkuKjxesxTSQZlzbkgxJHJDsxtWo1Na6L73+Sp 8qM2ubP8T6p1mofrONLr1TdBTTPz3gWIQzBt0= Received: by 10.180.74.177 with SMTP id u17mr3773814wiv.13.1329391833175; Thu, 16 Feb 2012 03:30:33 -0800 (PST) MIME-Version: 1.0 Received: by 10.227.195.209 with HTTP; Thu, 16 Feb 2012 03:30:13 -0800 (PST) From: Andres Aguado Date: Thu, 16 Feb 2012 12:30:13 +0100 Message-ID: Subject: Apache reverse proxy issue To: users@tomcat.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org Hi, although this space is for tomcat cuestion, i'd like to expose my problem with an apache 2.2 server over win2k8, because i'm going crazy, and if anyone could help me it'll be very appreciated. Well, I've an apache 2.2 server over win2k8, and i want to configure reverse proxy on it to send request to Websphere server So, my httpd.conf file is written like this: NameVirtualHost *:80 DocumentRoot "C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\my_example" ServerName www.my_example.es ServerRoot "C:\Program Files (x86)\Apache Software Foundation\Apache2.2" DirectoryIndex index.html ErrorLog "C:\Program Files (x86)\Apache Software Foundation\Apache2.2\logs\error.log" TransferLog "C:\Program Files (x86)\Apache Software Foundation\Apache2.2\logs\access.log" ProxyRequests Off Order deny,allow Allow from all ProxyPreserveHost On ProxyPass / https://was_server/ ProxyPassReverse / https://was_server/ Proxy modules enabled are mod_proxy.so and mod_proxy_http.so But this configuration is not working. I have not yet activated https on apache server, and want to send http://my_example:80 to https://was_server, but and 500 internal server error appears when i try to connect to my_example, and this line seems to be written in error.log [warn] proxy: No protocol handler was valid for the URL /. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule. Could anyone help me please? Thank you very much Andres --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org