Return-Path: X-Original-To: apmail-httpd-users-archive@www.apache.org Delivered-To: apmail-httpd-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 8561C10096 for ; Fri, 8 Nov 2013 09:17:27 +0000 (UTC) Received: (qmail 73760 invoked by uid 500); 8 Nov 2013 09:17:23 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 73569 invoked by uid 500); 8 Nov 2013 09:17:18 -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 73544 invoked by uid 99); 8 Nov 2013 09:17:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Nov 2013 09:17:16 +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 aterrestris@gmail.com designates 74.125.82.180 as permitted sender) Received: from [74.125.82.180] (HELO mail-we0-f180.google.com) (74.125.82.180) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Nov 2013 09:17:10 +0000 Received: by mail-we0-f180.google.com with SMTP id q59so1648492wes.25 for ; Fri, 08 Nov 2013 01:16:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=Dx/FrdpLT9tlOiktrtklDiURxdBRVYmzCQqHcOW6/sw=; b=JjpgmkDJG4+Fc355Xyn5DwHjaxlVLT/nQc6px0eFjuSkV+KolhpwJCye9HDGcwKzEM NQV4kounEoB32W4mro0NjAJ1k7gmh8tzUZGUGDMt1kTpvWRkL7pckY0Ft6zRyUEYuntv gVee0BX66FYz9oR49/653Wdmyf8vdMj3aR2xxTrPKX3a4ENcPU4EKOiOhOM3c9Xqi6za 8PtsrUOxXDc8tFccf7mv26ysQx67fL1VxSAEozUfIuUUGtQMc7Yiznd2Nj47twTD/Mo/ CbqoOQmOlIuCf/bE62iqLWW/364qFbxA5UcQ9C4jhkfq42GzM35rua8ShO+Fu+1Ic0bB P2aA== MIME-Version: 1.0 X-Received: by 10.180.9.229 with SMTP id d5mr1441401wib.53.1383902209922; Fri, 08 Nov 2013 01:16:49 -0800 (PST) Received: by 10.194.18.111 with HTTP; Fri, 8 Nov 2013 01:16:49 -0800 (PST) In-Reply-To: <001701cedc5f$c9db4f40$5d91edc0$@talktalk.net> References: <001701cedc5f$c9db4f40$5d91edc0$@talktalk.net> Date: Fri, 8 Nov 2013 09:16:49 +0000 Message-ID: From: =?ISO-8859-1?Q?Aur=E9lien_Terrestris?= To: users@httpd.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org Subject: Re: [users@httpd] Installed Modules Query Frank, httpd -l shows compiled-in modules but it's better to use DSO modules rather than compiled-in. To see what DSO modules were compiled, you can check what's in your modules directory. To get a great Apache 2.4.X with DSO, you can compile like this : 'configure --prefix=yourinstalldir --enable-mods-shared='most' As Oracle suggests you a "security" configuration, you can add their recommendations to the previous line Also, Apache 2.4 configuration script is bugged and the "enable" modules give a commented LoadModule in httpd.conf (see https://issues.apache.org/bugzilla/show_bug.cgi?id=55711 ) . So you can apply this patch or edit httpd.conf in order to remove the # of the modules you listed (ssl setenvif proxy ...) 2013/11/8 Frank Roche : > Hi - I am a newbie to Apache and want to learn how to setup Apache as a > reverse proxy server for Oracle e-Business Suite. > > I am following an Oracle document which details how to do this but the > Apache version it uses is in the example is httpd-2.0.54.tar.gz > > I would like to use the latest version of Apache so I can take advantage of > latest bug fixes, enhancements and security fixes - the version I have > installed is httpd-2.4.6.tar.gz > > The Oracle document says that once Apache is installed I should be able to > do the following to confirm the modules in use :- > $ ./httpd -l > Compiled in modules: > core.c > mod_access.c > mod_auth.c > mod_log_config.c > mod_headers.c > mod_setenvif.c > mod_proxy.c > proxy_http.c > mod_ssl.c > prefork.c > http_core.c > mod_mime.c > mod_dir.c > mod_rewrite.c > mod_so.c > > They suggest this is achieved with the following configure command :- > ./configure -prefix /dmz \ > --enable-ssl \ > --enable-setenvif \ > --enable-proxy \ > --enable-proxy_http \ > --enable-headers \ > --enable-rewrite \ > --enable-so \ > --disable-charset-lite \ > --disable-include \ > --disable-env \ > --disable-status \ > --disable-autoindex \ > --disable-asis \ > --disable-cgi \ > --disable-negotiation \ > --disable-imap \ > --disable-actions \ > --disable-userdir \ > --disable-alias > > My Problem: > However when I configure and make my version and run the same httpd -l > command, I get a far smaller subet of modules. > I have tried to use the configure command oracle provided and also the > --enable-load-all-modules directive in the configure command as follows > ./configure --enable-load-all-modules > > Whichever way I do, the list command still gives me as follows :- > # ./httpd -l > Compiled in modules: > core.c > mod_so.c > http_core.c > event.c > > This list is significantly different ( smaller) than the list the Oracle > document suggests. I have looked through the documentation and help on the > configure command and I believe I am doing the right thing. > I get that this may well be because they are different versions but can > someone confirm this for me please - or am I missing something more > fundamental? > > Thanks in advance > Frank > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > For additional commands, e-mail: users-help@httpd.apache.org > --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org