Skip to content
Snippets Groups Projects
Select Git revision
  • e48924b57cd3dd2afba7122942909b21f332715f
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

blink-7.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    sample.env 2.37 KiB
    ### SECRET KEY BASE
    # Verifies the integrity of all secrets created in the application
    # Can be generated by running 'docker run --rm --entrypoint /bin/sh bigbluebutton/greenlight:v3 -c "bundle exec rails secret"'
    SECRET_KEY_BASE=
    
    ### BIGBLUEBUTTON CREDENTIALS
    # Set these if you are running GreenLight on a single BigBlueButton server.
    # You can retrieve these by running the following command on your BigBlueButton server:
    #   bbb-conf --secret
    BIGBLUEBUTTON_ENDPOINT=
    BIGBLUEBUTTON_SECRET=
    
    ### POSTGRES DATABASE URL
    # Must be in the format postgres://username:password@host:port/dbname
    #   E.g. postgres://postgres:password@postgres:5432/greenlight-v3-production
    DATABASE_URL=
    
    ### REDIS CACHE URL
    # Must be in the format redis://host:port
    #   E.g. redis://redis:6379
    REDIS_URL=
    
    ### OPTIONAL ENV VARS
    
    ### SMTP CONFIGURATION
    # Emails are required for the basic features of Greenlight to function.
    # Please refer to your SMTP provider to get the values for the variables below
    #SMTP_SENDER_EMAIL=
    #SMTP_SENDER_NAME=
    #SMTP_SERVER=
    #SMTP_PORT=
    #SMTP_DOMAIN=
    #SMTP_USERNAME=
    #SMTP_PASSWORD=
    #SMTP_AUTH=
    #SMTP_STARTTLS_AUTO=true
    #SMTP_STARTTLS=false
    #SMTP_TLS=false
    #SMTP_SSL_VERIFY=true
    
    ### EXTERNAL AUTHENTICATION METHODS
    #
    #OPENID_CONNECT_CLIENT_ID=
    #OPENID_CONNECT_CLIENT_SECRET=
    #OPENID_CONNECT_ISSUER=
    #OPENID_CONNECT_REDIRECT=
    
    # To enable hCaptcha on the user sign up and sign in, define these 2 keys
    #HCAPTCHA_SITE_KEY=
    #HCAPTCHA_SECRET_KEY=
    
    # Set these if you are using a Simple Storage Service (S3)
    # Uncomment S3_ENDPOINT only if you are using a S3 OTHER than Amazon Web Service (AWS) S3.
    #S3_ACCESS_KEY_ID=
    #S3_SECRET_ACCESS_KEY=
    #S3_REGION=
    #S3_BUCKET=
    #S3_ENDPOINT=
    #S3_FORCE_PATH_STYLE=
    
    # Set these environment variables if you are using Google Cloud Storage
    #GCS_PROJECT=
    #GCS_BUCKET=
    #GCS_PROJECT_ID=
    #GCS_PRIVATE_KEY_ID=
    #GCS_PRIVATE_KEY=
    #GCS_CLIENT_EMAIL=
    #GCS_CLIENT_ID=
    #GCS_CLIENT_CERT=
    
    # Define the default locale language code (i.e. 'en' for English) from the following list:
    #  [en, ar, fr, es, fa_IR]
    #DEFAULT_LOCALE=en
    
    # Set this if you like to deploy Greenlight on a relative root path other than /
    #RELATIVE_URL_ROOT=/gl
    
    ## Define log level in production.
    # [debug|info|warn|error|fatal]
    # Default 'warn'.
    LOG_LEVEL=info
    
    ## Use to send logs to external repository (Optional)
    # RAILS_LOG_REMOTE_NAME=xxx.papertrailapp.com
    # RAILS_LOG_REMOTE_PORT=99999
    # RAILS_LOG_REMOTE_TAG=greenlight-v3