This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
greenlight/sample.env

127 lines
3.6 KiB
Bash
Raw Normal View History

2018-06-14 14:22:19 -04:00
# Create a Secret Key for Rails
#
# You can generate a secure one through the Greenlight docker image
# with with the command.
#
2018-07-06 12:12:27 -04:00
# docker run --rm bigbluebutton/greenlight:v2 bundle exec rake secret
2018-06-14 14:22:19 -04:00
#
SECRET_KEY_BASE=
2018-05-11 15:57:31 -04:00
# The endpoint and secret for your BigBlueButton server.
# Set these if you are running GreenLight on a single BigBlueButton server.
# You can retrive these by running the following command on your BigBlueButton server:
#
# bbb-conf --secret
#
BIGBLUEBUTTON_ENDPOINT=
BIGBLUEBUTTON_SECRET=
# Google Login Provider (optional)
#
# For in-depth steps on setting up a Google Login Provider, see:
#
2018-07-20 14:20:14 -04:00
# http://docs.bigbluebutton.org/install/greenlight-v2.html#google-oauth2
2018-05-11 15:57:31 -04:00
#
# The GOOGLE_OAUTH2_HD variable is used to limit sign-in to a particular Google Apps hosted
# domain. This can be a string such as, 'domain.com'. If left blank, GreenLight will allow
# sign-in from all Google Apps hosted domains.
GOOGLE_OAUTH2_ID=
GOOGLE_OAUTH2_SECRET=
GOOGLE_OAUTH2_HD=
# Twitter Login Provider (optional)
#
# For in-depth steps on setting up a Twitter Login Provider, see:
#
2018-07-20 14:20:14 -04:00
# http://docs.bigbluebutton.org/install/greenlight-v2.html#twitter-oauth2
2018-05-11 15:57:31 -04:00
#
TWITTER_ID=
TWITTER_SECRET=
# Microsoft Office365 Login Provider (optional)
#
# For in-depth steps on setting up a Office 365 Login Provider, see:
#
# http://docs.bigbluebutton.org/install/greenlight-v2.html#office365-oauth2
#
OFFICE365_KEY=
OFFICE365_SECRET=
2018-07-20 14:20:14 -04:00
# LDAP Login Provider (optional)
#
# You can enable LDAP authentication by providing values for the variables below.
# Configuring LDAP authentication will take precedence over all other providers.
# For information about setting up LDAP, see:
#
2018-07-20 14:55:49 -04:00
# http://docs.bigbluebutton.org/install/greenlight-v2.html#ldap-auth
2018-07-20 14:20:14 -04:00
#
LDAP_SERVER=
LDAP_PORT=
LDAP_METHOD=
LDAP_UID=
LDAP_BASE=
LDAP_BIND_DN=
LDAP_PASSWORD=
2018-05-11 15:57:31 -04:00
# Set this to true if you want GreenLight to support user signup and login without
2018-06-28 11:21:02 -04:00
# Omniauth. For more information, see:
#
# http://docs.bigbluebutton.org/install/greenlight-v2.html#in-application-greenlight
2018-06-28 11:21:02 -04:00
#
2018-06-22 15:58:25 -04:00
ALLOW_GREENLIGHT_ACCOUNTS=true
# Set this to true if you want GreenLight to send verification emails upon
# the creation of a new account
#
# SMTP variables can be configured by following the template:
#
# ALLOW_MAIL_NOTIFICATIONS=true
# SMTP_SERVER=smtp.gmail.com
# SMTP_PORT=587
# SMTP_DOMAIN=gmail.com
# SMTP_USERNAME=<youremail@gmail.com>
# SMTP_PASSWORD=<yourpassword>
# SMTP_AUTH=plain
# SMTP_STARTTLS_AUTO=true
#
ALLOW_MAIL_NOTIFICATIONS=
SMTP_SERVER=
SMTP_PORT=
SMTP_DOMAIN=
SMTP_USERNAME=
SMTP_PASSWORD=
SMTP_AUTH=
SMTP_STARTTLS_AUTO=
# Prefix for the applications root URL.
# Useful for deploying the application to a subdirectory, which is highly recommended
# if deploying on a BigBlueButton server. Keep in mind that if you change this, you'll
# have to update your authentication callback URL's to reflect this change.
#
2018-07-05 17:25:59 -04:00
# The recommended prefix is "/b".
#
2018-07-05 17:25:59 -04:00
RELATIVE_URL_ROOT=/b
2018-07-11 15:33:35 -04:00
# A URL to the image you want to appear in the top right corner of Greenlight.
# By default, this is the BigBlueButton logo.
BRANDING_IMAGE=
# Comment this out to send logs to STDOUT in production instead of log/production.log .
#
# RAILS_LOG_TO_STDOUT=true
#
# When using docker-compose the logs can be sent to an external service like PaperTrail
# just by using the built in driver. Make sure to add to docker-compose.yml the next lines:
#
# logging:
# driver: syslog
# options:
# syslog-address: "tcp+tls://logs4.papertrailapp.com:[99999]"
# tag: greenlight.mydomain.com:v2
#
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# It is disabled by default.
#
# ENABLE_SSL=true