You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Features:
11
11
*[Feature rich](docs/quick_tour.md).
12
12
* Implements [JMS](https://docs.oracle.com/javaee/7/api/javax/jms/package-summary.html) like transports based on [queue-interop](https://github.com/queue-interop/queue-interop) interfaces.
13
13
* Supported transports
14
-
*Amqp based on [the ext](docs/transport/amqp.md), [bunny](docs/transport/amqp_bunny.md), [the lib](docs/transport/amqp_lib.md)
14
+
*AMQP(S) based on [the ext](docs/transport/amqp.md), [bunny](docs/transport/amqp_bunny.md), [the lib](docs/transport/amqp_lib.md)
Copy file name to clipboardExpand all lines: docs/bundle/config_reference.md
+49
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,21 @@ enqueue:
87
87
88
88
# The options that are specific to the amqp transport you chose. For example amqp+lib have insist, keepalive, stream options. amqp+bunny has tcp_nodelay extra option.
89
89
driver_options: ~
90
+
91
+
# Should be true if you want to use secure connections. False by default
92
+
ssl_on: ~
93
+
94
+
# This option determines whether ssl client verifies that the server cert is for the server it is known as. True by default.
95
+
ssl_verify: ~
96
+
97
+
# Location of Certificate Authority file on local filesystem which should be used with the verify_peer context option to authenticate the identity of the remote peer. A string.
98
+
ssl_cacert: ~
99
+
100
+
# Path to local certificate file on filesystem. It must be a PEM encoded file which contains your certificate and private key. A string
101
+
ssl_cert: ~
102
+
103
+
# Path to local private key file on filesystem in case of separate files for certificate (local_cert) and private key. A string.
104
+
ssl_key: ~
90
105
rabbitmq_amqp:
91
106
driver: ~ # One of "ext"; "lib"; "bunny"
92
107
@@ -137,6 +152,21 @@ enqueue:
137
152
# The options that are specific to the amqp transport you chose. For example amqp+lib have insist, keepalive, stream options. amqp+bunny has tcp_nodelay extra option.
138
153
driver_options: ~
139
154
155
+
# Should be true if you want to use secure connections. False by default
156
+
ssl_on: ~
157
+
158
+
# This option determines whether ssl client verifies that the server cert is for the server it is known as. True by default.
159
+
ssl_verify: ~
160
+
161
+
# Location of Certificate Authority file on local filesystem which should be used with the verify_peer context option to authenticate the identity of the remote peer. A string.
162
+
ssl_cacert: ~
163
+
164
+
# Path to local certificate file on filesystem. It must be a PEM encoded file which contains your certificate and private key. A string
165
+
ssl_cert: ~
166
+
167
+
# Path to local private key file on filesystem in case of separate files for certificate (local_cert) and private key. A string.
168
+
ssl_key: ~
169
+
140
170
# The delay strategy to be used. Possible values are "dlx", "delayed_message_plugin" or service id
141
171
delay_strategy: dlx
142
172
fs:
@@ -196,6 +226,25 @@ enqueue:
196
226
197
227
# the connection will be performed as later as possible, if the option set to true
198
228
lazy: true
229
+
gps:
230
+
231
+
# The connection to Google Pub/Sub broker set as a string. Other parameters are ignored if set
232
+
dsn: ~
233
+
234
+
# The project ID from the Google Developer's Console.
235
+
projectId: ~
236
+
237
+
# The full path to your service account credentials.json file retrieved from the Google Developers Console.
238
+
keyFilePath: ~
239
+
240
+
# Number of retries for a failed request.
241
+
retries: 3
242
+
243
+
# Scopes to be used for the request.
244
+
scopes: []
245
+
246
+
# The connection will be performed as later as possible, if the option set to true
0 commit comments