You insert this connector in tomcat's server.xml.
You must specify the proxy's port and (optionally) the proxy's name in the Connector tag.
For instance, if you proxy port 80 to port 8080 for the www.foo domain, your connector will look like this:


<Connector className="org.apache.catalina.connector.http.HttpConnector"
port="8080" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="10" debug="0" connectionTimeout="60000"
proxyName="www.foo.com"
proxyPort="80">


-Vincent.

Gustavo Gomes wrote:

Can anyone help me with integration Apache + JBOSS with mod_proxy!?

I know the configuration of apache to make this, but what I configure in JBOSS, and in which file? I have to insert this command where?

<!-- A HTTP Connector on port 8080 --> <Connector className = "org.apache.catalina.connector.http.HttpConnector" port = "8080" minProcessors = "3" maxProcessors = "10" enableLookups = "true" acceptCount = "10" debug = "0" connectionTimeout = "60000"/>

Help please.
Thanks.





--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to