Sha256: 1c039b5ea759360b816d766b61eed9f16440920a8771ae56cddacecffc71e90e

Contents?: true

Size: 1.65 KB

Versions: 6

Compression:

Stored size: 1.65 KB

Contents

# Rabbit information connection
rabbit:
  # Precise RabbitMQ host - Default 'localhost'
  host: localhost
  # Precise RabbitMQ port - Default '5672'
  port: 5672
  # Precise RabbitMQ vhost - Default '/'
  vhost: /
  # Precise RabbitMQ user - Default 'guest'
  user: guest
  # Precise RabbitMQ password - Default 'guest'
  pass: guest
  # Password for admin request
  admin_pass: janusoverlord
  # Logger level for rabbitmq message
  level: info

# RabbitMQ Queue information
queues:
  standard:
    # Queue sending response to janus server
    from: from-janus
    # Queue sending a message for janus server
    to: to-janus
  admin:
    # Queue sending response to admin API janus
    from: from-janus-admin
    # Queue sending a message for admin API janus
    to: to-janus-admin
  # Name to queue for managing instances
  instance: janus-instance-thread

# Janus plugin used
janus:
  # Option for sessions
  session:
    # Define time to send a keepalive message in seconds
    keepalive: 55
  # Create an array to plugin
  plugins:
    - janus.plugin.echotest
    - janus.plugin.videoroom
    - janus.plugin.sip

# Options gem
gem:
  # Options for clusturing Janus Instance
  cluster:
    # Enable/Disable cluster mode
    # if you disable cluster mode, the initializer to this gem start a session
    # automatically with Janus, but if you enable think to start a session for
    # each instance
    enabled: true
  # Option for logs
  log:
    # Define level to log
    # UNKNOW, FATAL, ERROR, WARN, INFO, DEBUG
    level: debug
  # Options for listener thread
  listener:
    # Represent path to action_events class in project who use this gem
    path: 'app/ruby_rabbitmq_janus'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby_rabbitmq_janus-2.6.0.pre.238 config/default.yml
ruby_rabbitmq_janus-2.6.0.pre.233 config/default.yml
ruby_rabbitmq_janus-2.6.0.pre.229 config/default.yml
ruby_rabbitmq_janus-2.6.0.pre.228 config/default.yml
ruby_rabbitmq_janus-2.6.0.pre.227 config/default.yml
ruby_rabbitmq_janus-2.6.0.pre.226 config/default.yml