chore: fix vhost and username for ofborg
Username and vhost creation are out of band and manual. $ cd /var/lib/rabbitmq $ sudo -u rabbitmq rabbitmqctl create_user ofborg $pwd $ sudo -u rabbitmq rabbitmqctl set_permissions ofborg '.*' '.*' '.*' Here's a simple way to reproduce that setup on the RabbitMQ server. Doing better will require the Vault server which will come soon anyway. Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
parent
ab998c8fb9
commit
665a750e35
|
@ -48,8 +48,8 @@ in {
|
|||
rabbitmq = {
|
||||
ssl = true;
|
||||
host = "amqp.forkos.org";
|
||||
virtualhost = "amqp.forkos.org";
|
||||
username = "worker";
|
||||
virtualhost = "/";
|
||||
username = "ofborg";
|
||||
password_file = "$CREDENTIALS_DIRECTORY/rabbitmq-password";
|
||||
};
|
||||
feedback.full_logs = lib.mkDefault true;
|
||||
|
|
Loading…
Reference in a new issue