Hi all,
Just a note answering my own question in case there are others with similar 
config:
Per the wiki article:
http://download.eclipse.org/jetty/stable-9/apidocs/org/eclipse/jetty/server/ForwardedRequestCustomizer.html

we achieve the same results by uncommenting the lines in ./etc/jetty.xml:
     <Call name="addCustomizer">
        <Arg><New 
class="org.eclipse.jetty.server.ForwardedRequestCustomizer"/></Arg>
      </Call>

And sending to Jetty some request headers:
X-Forwarded-Host: server.hostname
X-Forwarded-Server: server.hostname port
X-Forwarded-For: clientIP
X-Forwarded-Proto: https

The proto directive is the important one in order to have jetty configure 
Request.getScheme() to the application properly.

Hope this helps others.
-Michael.



-- 
You are currently subscribed to [email protected] as: 
[email protected]
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-user

Reply via email to