forked from ruby-amqp/bunny
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Provision latest RabbitMQ and Erlang from Bintray via apt * Use a new style RabbitMQ configuration file * Update docker-compose.yml to a newer format * Use rabbitmqctl shutdown instead of sleeping * Edits to CONTRIBUTING.md (mention Toxiproxy, etc)
- Loading branch information
1 parent
506c04f
commit 0297983
Showing
9 changed files
with
80 additions
and
65 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Package: erlang* | ||
Pin: release o=Bintray | ||
Pin-Priority: 1000 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
deb http://dl.bintray.com/rabbitmq-erlang/debian bionic erlang | ||
deb http://dl.bintray.com/rabbitmq/debian bionic main |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
listeners.tcp.1 = 0.0.0.0:5672 | ||
|
||
listeners.ssl.default = 5671 | ||
|
||
ssl_options.cacertfile = /spec/tls/ca_certificate.pem | ||
ssl_options.certfile = /spec/tls/server_certificate.pem | ||
ssl_options.keyfile = /spec/tls/server_key.pem | ||
ssl_options.verify = verify_none | ||
ssl_options.fail_if_no_peer_cert = false | ||
|
||
loopback_users = none |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
listeners.tcp.1 = 0.0.0.0:5672 | ||
|
||
listeners.ssl.default = 5671 | ||
|
||
# mounted by docker-compose | ||
ssl_options.cacertfile = /spec/tls/ca_certificate.pem | ||
ssl_options.certfile = /spec/tls/server_certificate.pem | ||
ssl_options.keyfile = /spec/tls/server_key.pem | ||
|
||
ssl_options.verify = verify_none | ||
ssl_options.fail_if_no_peer_cert = false | ||
|
||
loopback_users = none |
This file was deleted.
Oops, something went wrong.