Skip to content

Grails 2.* versions of RabbitMQ Plug-in with TLS support.

Notifications You must be signed in to change notification settings

semerps/sem-rabbitmq

Repository files navigation

SEM RabbitMQ

Grails 2.* RabbitMQ Plugin supported TLSv1.2

Hello there,

Clone a repository

git clone https://github.com/semerps/sem-rabbitmq grails compile && grails maven-install

Add The Plugin

In grails-app/conf/BuildConfig.groovy, under the plugins section, add:

plugins {
    // ...
    compile name: "sem-rabbitmq", version: "1.1.0"

    // …
}

This repo has been copied from rabbitmq-native ( https://github.com/budjb/grails-rabbitmq-native ).

Configure your Grails project to use the TLSv1.2 protocol as follows.

application.groovy;

rabbitmq {  
    connections = [  
        [  
	     name: "defaultConnection", 
	     host: "example.com", 
	     username: "foo", 
	     password: "bar", 
	     port: 5671, 
	     ssl:true, 
	     sslProtocol:"TLSv1.2" 
	    ]
	]  
}  
  
or  
  
rabbitmq {  
    connection = {  
        connection host: "example.com", username: "foo", password: "bar", ssl: true, sslProtocol: "TLSv1.2", port: 5671  
    }  
}

application.yml

rabbitmq:
    connections:
      - name: defaultConnection
        host: example.com
        username: foo
        password: bar
        ssl: true
        port: 5671
        sslProtocol: TLSv1.2

About

Grails 2.* versions of RabbitMQ Plug-in with TLS support.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published