Created
April 27, 2019 23:55
-
-
Save vitali-s/8977fecb5a992e66a5d960983d53a822 to your computer and use it in GitHub Desktop.
#rabbitmq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"users":[ | |
{ | |
"name": "guest", | |
"password_hash": "o2MJjT8UKSRM7eoLDMWvm4LxqaFvDxd2wLg1KQQQ2jXfG5UE", | |
"hashing_algorithm": "rabbit_password_hashing_sha256", | |
"tags": "administrator" | |
} | |
], | |
"vhosts": [ | |
{ | |
"name": "/" | |
} | |
], | |
"permissions": [ | |
{ | |
"user": "guest", | |
"vhost": "/", | |
"configure": ".*", | |
"write": ".*", | |
"read": ".*" | |
} | |
], | |
"parameters": [], | |
"policies": [], | |
"queues": [ | |
{ | |
"name": "queue.area.ha", | |
"vhost": "/", | |
"durable": true, | |
"auto_delete": false, | |
"arguments": { | |
"x-dead-letter-exchange": "", | |
"x-dead-letter-routing-key": "queue.area.ha.dead" | |
} | |
}, | |
{ | |
"name": "queue.area.ha.dead", | |
"vhost": "/", | |
"durable": true, | |
"auto_delete": false, | |
"arguments": { } | |
} | |
], | |
"exchanges": [ | |
{ | |
"name": "queue.area", | |
"vhost": "/", | |
"type": "fanout", | |
"durable": true, | |
"auto_delete": false, | |
"internal": false, | |
"arguments": {} | |
} | |
], | |
"bindings": [ | |
{ | |
"source": "queue.area", | |
"vhost": "/", | |
"destination": "queue.area.ha", | |
"destination_type": "queue", | |
"routing_key": "*", | |
"arguments": {} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment