> -----Original Message----- > From: Jeff Sexton [mailto:jsexton@;odshealthplans.com] > Sent: Monday, November 11, 2002 1:51 PM > To: Jetspeed Users List > Subject: RE: Jetspeed Proxy set up question > > > > > > On Mon, 11 Nov 2002, Ching Chen wrote: > > Actually we're using a reverse proxy...we are trying to set the > URLs that > > are dynamically created by JetSpeed to point to the proxy > server instead of > > the machine on which jetspeed is actually installed. Is this > something that > > we need to set in Tomcat? In the velocity templates for the > base elements of > > each page (ie top.vm) there is a $jslink parameter that seems > to form the > > base of each url, but I don't know where to change that. Any ideas? > > Setting the CATALINA_OPTS environment variable will cause everything to be > forwarded to a proxy server. Set it before starting the servlet engine, > and Jetspeed will use your proxy server. That's all I know about it, > unfortunatly. > > And unfortunatly for me, the use of a proxy server via CATALINA_OPTS seems > to be an all or nothing option.
See: http://java.sun.com/j2se/1.4/docs/guide/net/properties.html http.nonProxyHosts http.nonProxyHosts indicates the hosts which should be connected too directly and not through the proxy server. The value can be a list of hosts, each seperated by a |, and in addition a wildcard character (*) can be used for matching. For example: -Dhttp.nonProxyHosts="*.foo.com|localhost". -- To unsubscribe, e-mail: <mailto:jetspeed-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:jetspeed-user-help@;jakarta.apache.org>
