-
Notifications
You must be signed in to change notification settings - Fork 10
/
dotenv
83 lines (68 loc) · 3.06 KB
/
dotenv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Create a Secret Key for Rails
#
# You can generate a secure one through the Greenlight docker image
# with the command.
#
# docker run --rm bigbluebutton/bbb-lti-broker:latest bundle exec rake secret
#
SECRET_KEY_BASE=
# App configuration
RELATIVE_URL_ROOT=lti
# LTI tools configuration
DEFAULT_LTI_TOOL=rooms
# DEVELOPER_MODE_ENABLED=true
## Use to serve assets through the app (Required for now)
RAILS_SERVE_STATIC_FILES=true
## Set the hostname using your own domain (Required)
# URL_HOST=broker.example.com
## Use to send logs to external repository (Optional)
# RAILS_LOG_REMOTE_NAME=xxx.papertrailapp.com
# RAILS_LOG_REMOTE_PORT=99999
# RAILS_LOG_REMOTE_TAG=bbb-lti-broker
## Use DATABASE_URL when using a postgres outside the pre-packaged with docker-compose
## DATABASE_URL=postgres://myuser:mypass@localhost/database_name
## Database name for production can be omitted from DATABASE_URL
## DB_NAME=database_production
## Enable redis for actioncable
# REDIS_URL=redis://myuser:mypass@localhost
REDIS_PREFIX=bbb-lti-broker
# Only needed for Docker Compose.
## Change DOCKER_REPO when using a repo other than bigbluebutton
## DOCKER_REPO=my-repo
## Change DOCKER_TAG when using a tag other than latest
## DOCKER_TAG=my-tag
## Enable redis as the Action Cable adapter.
# CABLE_ADAPTER=redis
## Web server settings
# The size of the thread pool per worker used by Greenlight's web server.
# For details, see: https://github.com/puma/puma#thread-pool
# Default: 5
# RAILS_MAX_THREADS=5
# The amount of workers (separate processes) used by the web server.
# For details, see: https://github.com/puma/puma#clustered-mode
# Default: 1
# WEB_CONCURRENCY=1
## Define log level in production.
# [debug|info|warn|error|fatal]
# Default 'warn'.
# LOG_LEVEL=warn
## Define patterns for handler_legacy
# Different legacy apps used different combinations of params to produce the handler or meetingID. On top of that
# different consumers may come with differnt parameters or the data may be inconsistent. This is the reason why some
# rules are needed.
# - param-xxx, it is a literal value of parameter xxx.
# - fqdn-yyy parses the host obtained from processing the value of parameter yyy as a URL.
# - | is a fallback in case the value found from the first pattern is empty.
#
# E.g.
# konekti: 'param-tool_consumer_instance_guid|fqdn-ext_tc_profile_url,param-context_id,param-resource_link_id'
# bbb-lti 'param-resource_link_id,param-oauth_consumer_key'
#
# Default: param-resource_link_id,param-oauth_consumer_key
# HANDLER_LEGACY_PATTERNS='param-tool_consumer_instance_guid|fqdn-ext_tc_profile_url,param-context_id,param-resource_link_id'
## Define settings for the deployment.
# These settings are used to provide information about the deployment to the consumers and are used across tenants.
# DEPLOYMENT_NAME= # The name of the deployment.
# DEPLOYMENT_POLICY_URI= # The uri to the policy of the deployment.
# DEPLOYMENT_TOS_URI= # The uri to the terms of service of the deployment.
# DEPLOYMENT_CONTACT_EMAIL= # The email to contact the administrator or support of the deployment.