have default broker config use wildcard address to listen on all interfaces to maintain existing behaviour, localhost now means just localhost or loopback - up shot of https://issues.apache.org/activemq/browse/AMQ-2094

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@790100 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2009-07-01 10:28:05 +00:00
parent b97dbff52a
commit 4ee34c9609
1 changed files with 4 additions and 4 deletions

View File

@ -105,10 +105,10 @@
<!-- The transport connectors ActiveMQ will listen to -->
<transportConnectors>
<transportConnector name="openwire" uri="tcp://localhost:61616" discoveryUri="multicast://default"/>
<transportConnector name="ssl" uri="ssl://localhost:61617"/>
<transportConnector name="stomp" uri="stomp://localhost:61613"/>
<transportConnector name="xmpp" uri="xmpp://localhost:61222"/>
<transportConnector name="openwire" uri="tcp://0.0.0.0:61616" discoveryUri="multicast://default"/>
<transportConnector name="ssl" uri="ssl://0.0.0.0:61617"/>
<transportConnector name="stomp" uri="stomp://0.0.0.0:61613"/>
<transportConnector name="xmpp" uri="xmpp://0.0.0.0:61222"/>
</transportConnectors>
</broker>