mod_proxy_http and jetty

Peter Schober peter.schober at univie.ac.at
Fri Sep 23 18:37:18 BST 2011


* Russell Beall <beall at usc.edu> [2011-09-23 19:11]:
> I am testing out the use of Jetty for shibboleth instead of Tomcat,
> with Apache in front.  I found that mod_proxy_ajp is prone to errors
> (in jetty) and the jetty documentation strongly recommends the use
> of HTTP proxy.

If you're referring to the "Using AJP" on this page:
http://docs.codehaus.org/display/JETTY/Configuring+AJP13+Using+mod_jk
it seems to me that every single of those 5 items given in that
section (why not to use AJP) is now outdated or nonsensical, given the
existance of mod_proxy_ajp.
Note that I'm not saying Jetty works great with AJP, as I've never
used Jetty (first struggled finding the right version to download --
Codehaus vs. Mortbay vs. Eclipse, Hightide vs. non-H., Versions 6, 7
or 8 -- and couldn't get myself to wade though the dozens of config
files trying to figure this thing out.)

> When switching to this mode I found that the REMOTE_USER information
> is not transmitted in the proxy, even though it does get proxied if
> AJP is used.

What CGIs call REMOTE_USER is a data structure that's internal to
Apache httpd ($r->user), which you cannot forward via HTTP (the same
way you cannot "forward" httpd environment variables via HTTP).

What you can do is stick it into any old HTTP request header of your
choice, constrained by HTTP header name restrictions (e.g. you can't
have REMOTE_USER, only X-REMOTE-USER, which is not the same, so you
could as well call the header name X-A3C1D161437906E50BF77DB560709E54).
-peter


More information about the users mailing list