Created
November 26, 2023 16:53
-
-
Save sorki/618e21d5e38ee9c4a0389f877d48b044 to your computer and use it in GitHub Desktop.
rabbit
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
services.rabbitmq = { | |
enable = true; | |
configItems = { | |
"heartbeat" = "6"; | |
"tcp_listen_options.keepalive" = "true"; | |
"tcp_listen_options.send_timeout" = "1500"; # default is 15000 | |
"management.tcp.ip" = "127.0.0.1"; | |
"management.tcp.port" = "15672"; | |
}; | |
plugins = [ "rabbitmq_management" ]; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment