svn commit: r1063235 - /ofbiz/trunk/framework/base/config/ofbiz-containers.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1063235 - /ofbiz/trunk/framework/base/config/ofbiz-containers.xml

jleroux@apache.org
Author: jleroux
Date: Tue Jan 25 11:35:04 2011
New Revision: 1063235

URL: http://svn.apache.org/viewvc?rev=1063235&view=rev
Log:
As discussed on dev ML, by default comment out Beanshell and Groovy containers for security reasons

Modified:
    ofbiz/trunk/framework/base/config/ofbiz-containers.xml

Modified: ofbiz/trunk/framework/base/config/ofbiz-containers.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/config/ofbiz-containers.xml?rev=1063235&r1=1063234&r2=1063235&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/config/ofbiz-containers.xml (original)
+++ ofbiz/trunk/framework/base/config/ofbiz-containers.xml Tue Jan 25 11:35:04 2011
@@ -263,14 +263,17 @@ under the License.
     </container>
 
     <!-- load BeanShell remote telnet server -->
-    <container name="beanshell-container" class="org.ofbiz.base.container.BeanShellContainer">
-        <!-- the port below and port-1 will be opened by beanshell -->
+    <!-- Uncommented by default for security reasons -->
+    <!-- the port below and port-1 will be opened by Beanshell -->
+    <!--container name="beanshell-container" class="org.ofbiz.base.container.BeanShellContainer">
         <property name="telnet-port" value="9990"/>
         <property name="app-name" value="OFBiz"/>
-    </container>
+    </container-->
     
     <!-- load Groovy remote telnet server -->
-    <container name="groovyshell-container" class="org.ofbiz.base.container.GroovyShellContainer">
-        <property name="telnet-port" value="29991"/>
-    </container>    
+    <!-- Uncommented by default for security reasons -->
+    <!-- the port below will be opened by Groovy -->
+    <!--container name="groovyshell-container" class="org.ofbiz.base.container.GroovyShellContainer">
+        <property name="telnet-port" value="9991"/>
+    </container-->    
 </ofbiz-containers>