Skip to content

Instantly share code, notes, and snippets.

@koolhead17
Last active September 11, 2016 21:43
Show Gist options
  • Select an option

  • Save koolhead17/7471ef14772bbf0daceaa90cc9aaa679 to your computer and use it in GitHub Desktop.

Select an option

Save koolhead17/7471ef14772bbf0daceaa90cc9aaa679 to your computer and use it in GitHub Desktop.
Minio Config for RabbitMQ
{
"version": "6",
"credential": {
"accessKey": "MYACCESSKEY",
"secretKey": "MYSECRETKEY"
},
"region": "us-east-1",
"logger": {
"console": {
"enable": true,
"level": "fatal"
},
"file": {
"enable": false,
"fileName": "",
"level": "error"
},
"syslog": {
"enable": false,
"address": "",
"level": "debug"
}
},
"notify": {
"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
}
},
"elasticsearch": {
"1": {
"enable": false,
"url": "",
"index": ""
}
},
"redis": {
"1": {
"enable": false,
"address": "",
"password": "",
"key": ""
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment