You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by de...@apache.org on 2012/07/05 11:44:39 UTC

svn commit: r1357529 - /activemq/trunk/assembly/src/release/conf/jetty.xml

Author: dejanb
Date: Thu Jul  5 09:44:39 2012
New Revision: 1357529

URL: http://svn.apache.org/viewvc?rev=1357529&view=rev
Log:
https://issues.apache.org/jira/browse/AMQ-2535 - jetty ssl connector configuration

Modified:
    activemq/trunk/assembly/src/release/conf/jetty.xml

Modified: activemq/trunk/assembly/src/release/conf/jetty.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/assembly/src/release/conf/jetty.xml?rev=1357529&r1=1357528&r2=1357529&view=diff
==============================================================================
--- activemq/trunk/assembly/src/release/conf/jetty.xml (original)
+++ activemq/trunk/assembly/src/release/conf/jetty.xml Thu Jul  5 09:44:39 2012
@@ -93,6 +93,16 @@
                 <bean id="Connector" class="org.eclipse.jetty.server.nio.SelectChannelConnector">
                     <property name="port" value="8161" />
                 </bean>
+                <!--
+                    Enable this connector if you wish to use https with web console
+                -->
+                <!--
+                <bean id="SecureConnector" class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector">
+                    <property name="port" value="8162" />
+                    <property name="keystore" value="file:${activemq.conf}/broker.ks" />
+                    <property name="password" value="password" />
+                </bean>
+                -->
             </list>
         </property>