diff options
| author | Robert Greig <rgreig@apache.org> | 2007-01-24 15:41:48 +0000 |
|---|---|---|
| committer | Robert Greig <rgreig@apache.org> | 2007-01-24 15:41:48 +0000 |
| commit | b89531eed28cf2eee4fd841be57d27c0d5bcf744 (patch) | |
| tree | 3e86825d875a7cae7943ae17e0350cee5aec0bc5 /java/broker/etc/config.xml | |
| parent | 7c43996f3c10426d6593b7224486a6b0331c7259 (diff) | |
| download | qpid-python-b89531eed28cf2eee4fd841be57d27c0d5bcf744.tar.gz | |
QPID-50 : Patch supplied by Rob Godfrey - Virtual Host implementation
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@499446 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/broker/etc/config.xml')
| -rw-r--r-- | java/broker/etc/config.xml | 35 |
1 files changed, 32 insertions, 3 deletions
diff --git a/java/broker/etc/config.xml b/java/broker/etc/config.xml index 61e0e55138..779a434332 100644 --- a/java/broker/etc/config.xml +++ b/java/broker/etc/config.xml @@ -79,6 +79,37 @@ </mechanisms> </sasl> </security> + <virtualhosts> + <virtualhost> + <name>localhost</name> + <localhost> + <store> + <!-- <class>org.apache.qpid.server.store.berkeleydb.BDBMessageStore</class> --> + <class>org.apache.qpid.server.store.MemoryMessageStore</class> + <environment-path>localhost-store</environment-path> + </store> + </localhost> + </virtualhost> + + <virtualhost> + <name>development</name> + <development> + <store> + <class>org.apache.qpid.server.store.MemoryMessageStore</class> + </store> + </development> + </virtualhost> + + <virtualhost> + <name>test</name> + <test> + <store> + <class>org.apache.qpid.server.store.MemoryMessageStore</class> + </store> + </test> + </virtualhost> + + </virtualhosts> <heartbeat> <delay>0</delay> <timeoutFactor>2.0</timeoutFactor> @@ -86,8 +117,6 @@ <queue> <auto_register>true</auto_register> </queue> - <store> - <class>org.apache.qpid.server.store.MemoryMessageStore</class> - </store> + <virtualhosts>${conf}/virtualhosts.xml</virtualhosts> </broker> |
