-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for EXTERNAL auth (#213)
* feat: add support for EXTERNAL auth Co-authored-by: GPad <642430+gpad@users.noreply.github.com> * refactor: throw from a function --------- Co-authored-by: GPad <642430+gpad@users.noreply.github.com>
- Loading branch information
1 parent
701e1d6
commit d8083e5
Showing
11 changed files
with
122 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ dist/ | |
node_modules/ | ||
performance_test/node_modules | ||
.envrc | ||
tls-gen/ |
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 |
---|---|---|
@@ -1 +1 @@ | ||
[rabbitmq_management,rabbitmq_prometheus,rabbitmq_stream_management]. | ||
[rabbitmq_management,rabbitmq_prometheus,rabbitmq_stream_management,rabbitmq_auth_mechanism_ssl]. |
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,15 @@ | ||
loopback_users.guest = false | ||
|
||
ssl_options.cacertfile = /certs/ca_certificate.pem | ||
ssl_options.certfile = /certs/server_rabbitmq_certificate.pem | ||
ssl_options.keyfile = /certs/server_rabbitmq_key.pem | ||
listeners.ssl.default = 5671 | ||
listeners.tcp.default = 5672 | ||
stream.listeners.tcp.default = 5552 | ||
stream.listeners.ssl.default = 5551 | ||
auth_mechanisms.1 = PLAIN | ||
auth_mechanisms.2 = EXTERNAL | ||
ssl_options.verify = verify_peer | ||
ssl_options.fail_if_no_peer_cert = false | ||
log.file.level = debug | ||
log.console = true |
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
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