Skip to content

Commit 0c85c35

Browse files
committed
[doc][bundle] upd config ref.
1 parent cf3fc45 commit 0c85c35

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

docs/bundle/config_reference.md

+49
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,21 @@ enqueue:
8787

8888
# 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.
8989
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: ~
90105
rabbitmq_amqp:
91106
driver: ~ # One of "ext"; "lib"; "bunny"
92107

@@ -137,6 +152,21 @@ enqueue:
137152
# 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.
138153
driver_options: ~
139154

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+
140170
# The delay strategy to be used. Possible values are "dlx", "delayed_message_plugin" or service id
141171
delay_strategy: dlx
142172
fs:
@@ -196,6 +226,25 @@ enqueue:
196226

197227
# the connection will be performed as later as possible, if the option set to true
198228
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
247+
lazy: true
199248
client:
200249
traceable_producer: false
201250
prefix: enqueue

0 commit comments

Comments
 (0)