forked from External/greenlight
54 lines
1.8 KiB
Bash
54 lines
1.8 KiB
Bash
# Create a Secret Key for Rails
|
|
#
|
|
# You can generate a secure one through the Greenlight docker image
|
|
# with with the command.
|
|
#
|
|
# docker run --rm bigbluebutton/greenlight bundle exec rake secret
|
|
#
|
|
SECRET_KEY_BASE=
|
|
|
|
# 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:
|
|
#
|
|
# http://docs.bigbluebutton.org/install/green-light.html#google-oauth
|
|
#
|
|
# 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:
|
|
#
|
|
# http://docs.bigbluebutton.org/install/green-light.html#twitter-oauth
|
|
#
|
|
TWITTER_ID=
|
|
TWITTER_SECRET=
|
|
|
|
# Set this to true if you want GreenLight to support user signup and login without
|
|
# Omniauth. This will allow users to create an account at www.hostname.com/signup
|
|
# and use that account to fully interact with GreenLight.
|
|
ALLOW_GREENLIGHT_ACCOUNTS=true
|
|
|
|
# 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.
|
|
#
|
|
# The recommended prefix is "/gl".
|
|
#
|
|
RELATIVE_URL_ROOT=/gl
|