janus-gateway / conf / janus.eventhandler.rabbitmqevh.cfg.sample @ b8940253
History | View | Annotate | Download (1.26 KB)
1 |
; This configures the RabbitMQ event handler. |
---|---|
2 |
|
3 |
[general] |
4 |
enabled = no ; By default the module is not enabled |
5 |
events = all ; Comma separated list of the events mask you're interested |
6 |
; in. Valid values are none, sessions, handles, jsep, webrtc, |
7 |
; media, plugins, transports, core and all. By default we |
8 |
; subscribe to everything (all) |
9 |
grouping = yes ; Whether events should be sent individually , or if it's ok |
10 |
; to group them. The default is 'yes' to limit the number of |
11 |
; messages |
12 |
host = localhost ; The address of the RabbitMQ server |
13 |
;port = 5672 ; The port of the RabbitMQ server (5672 by default) |
14 |
;username = guest ; Username to use to authenticate, if needed |
15 |
;password = guest ; Password to use to authenticate, if needed |
16 |
;vhost = / ; Virtual host to specify when logging in, if needed |
17 |
;exchange = janus-exchange |
18 |
route_key = janus-events ; Name of the queue for event messages |
19 |
|
20 |
;ssl_enable = no ; Whether ssl support must be enabled |
21 |
;ssl_verify_peer = yes ; Whether peer verification must be enabled |
22 |
;ssl_verify_hostname = yes ; Whether hostname verification must be enabled |
23 |
; certificates to use when SSL support is enabled, if needed |
24 |
;ssl_cacert = /path/to/cacert.pem |
25 |
;ssl_cert = /path/to/cert.pem |
26 |
;ssl_key = /path/to/key.pem |