0 Replies Latest reply on Aug 3, 2011 3:16 AM by aupres

    how to integrate apache web server and jboss 7

    aupres

      To integrate Apache Web server and JBoss 7, I inserted a few lines into <JBoss_Home>\standalone\configuration\standalone.xml like below,

       

      <subsystem xmlns="urn:jboss:domain:web:1.0" default-virtual-server="default-host">

                  <connector name="http" protocol="HTTP/1.1" socket-binding="http" scheme="http"/>

                  <connector name="ajp" protocol="AJP/1.3" socket-binding="ajp" scheme="http"/>

                  <virtual-server name="default-host" enable-welcome-root="true">

       

      .......

      <socket-binding-group name="standard-sockets" default-interface="public">

              <socket-binding name="http" port="8080"/>

              <socket-binding name="ajp" port="8009"/>

              <socket-binding name="https" port="8443"/>

       

      And I downloaded tomcat-ajp.jar file and put it into <JBoss_Home>\modules\org\jboss\as\web\main. I put some codes into module.xml like below

       

      <!-- Insert resources here -->

              <resource-root path="tomcat-ajp.jar"/>

       

      But, It doesn't work. Pls, kindly inform me any advice.

      Thanks in advance.

       

      Best Regards