Last active
September 13, 2016 22:14
-
-
Save koolhead17/be617d7db5b49377dddeafad8688c441 to your computer and use it in GitHub Desktop.
Minio Config Snippet for RabbitMQ
This file contains hidden or 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
| "amqp": { | |
| "1": { | |
| "enable": true, | |
| "url": "amqp://myuser:mypassword@localhost:5672", | |
| "exchange": "bucketevents", | |
| "routingKey": "bucketlogs", | |
| "exchangeType": "fanout", | |
| "mandatory": false, | |
| "immediate": false, | |
| "durable": false, | |
| "internal": false, | |
| "noWait": false, | |
| "autoDeleted": false | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment