Author: jacopoc
Date: Fri Dec 5 15:05:20 2014 New Revision: 1643315 URL: http://svn.apache.org/r1643315 Log: Added to all the Tomcat connectors the commented out setting for the "address" parameter: this is useful when you run multiple instances of OFBiz in the same server each bound to a different hostname/IP address. Modified: ofbiz/trunk/framework/catalina/ofbiz-component.xml Modified: ofbiz/trunk/framework/catalina/ofbiz-component.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/catalina/ofbiz-component.xml?rev=1643315&r1=1643314&r2=1643315&view=diff ============================================================================== --- ofbiz/trunk/framework/catalina/ofbiz-component.xml (original) +++ ofbiz/trunk/framework/catalina/ofbiz-component.xml Fri Dec 5 15:05:20 2014 @@ -68,6 +68,7 @@ under the License. </property> <property name="ajp-connector" value="connector"> <!-- see http://tomcat.apache.org/tomcat-7.0-doc/config/ajp.html for reference --> + <!--<property name="address" value=""/>--> <property name="port" value="8009"/> <property name="protocol" value="AJP/1.3"/> <property name="scheme" value="http"/> @@ -96,6 +97,7 @@ under the License. </property> <property name="http-connector" value="connector"> <!-- see http://tomcat.apache.org/tomcat-7.0-doc/config/http.html for reference --> + <!--<property name="address" value=""/>--> <property name="port" value="8080"/> <property name="protocol" value="HTTP/1.1"/> <property name="scheme" value="http"/> @@ -124,6 +126,7 @@ under the License. </property> <property name="https-connector" value="connector"> <!-- see http://tomcat.apache.org/tomcat-7.0-doc/config/http.html for reference --> + <!--<property name="address" value=""/>--> <property name="port" value="8443"/> <property name="protocol" value="HTTP/1.1"/> <property name="scheme" value="https"/> @@ -171,6 +174,7 @@ under the License. <property name="enable-request-dump" value="false"/> </property> <property name="ajp-connector" value="connector"> + <!--<property name="address" value=""/>--> <property name="port" value="8010"/> <property name="protocol" value="AJP/1.3"/> <property name="scheme" value="http"/> @@ -179,6 +183,7 @@ under the License. <property name="xpoweredBy" value="true"/> </property> <property name="http-connector" value="connector"> + <!--<property name="address" value=""/>--> <property name="port" value="8080"/> <property name="protocol" value="HTTP/1.1"/> <property name="scheme" value="http"/> @@ -189,6 +194,7 @@ under the License. <property name="compressableMimeType" value="text/html,text/xml,text/plain,text/javascript,text/css"/> </property> <property name="https-connector" value="connector"> + <!--<property name="address" value=""/>--> <property name="port" value="8443"/> <property name="protocol" value="HTTP/1.1"/> <property name="scheme" value="https"/> |
Free forum by Nabble | Edit this page |