openvidu/openvidu-server/docker/openvidu-docker-compose/.env

55 lines
2.3 KiB
Bash
Raw Normal View History

# OpenVidu configuration
# ----------------------
# Documentation: https://openvidu.io/docs/reference-docs/openvidu-server-params/
2020-03-24 17:18:37 +01:00
2020-04-06 11:59:05 +02:00
# NOTE: This file doesn't need to quote assignment values, like most shells do.
# All values are stored as-is, even if they contain spaces, so don't quote them.
# OpenVidu SECRET used for apps to connect to OpenVidu server and users to access to OpenVidu Dashboard
OPENVIDU_SECRET=
2020-03-24 17:18:37 +01:00
2020-04-06 11:59:05 +02:00
# Domain name. If you do not have one, the public IP of the machine.
# For example: 198.51.100.1, or openvidu.example.com
OPENVIDU_DOMAIN_OR_PUBLIC_IP=
2020-03-24 17:18:37 +01:00
2020-04-06 11:59:05 +02:00
# Openvidu Folder Record used for save the openvidu recording videos. Change it
2020-03-26 15:11:08 +01:00
# with the folder you want to use from your host.
OPENVIDU_RECORDING_FOLDER=/opt/recordings
2020-04-06 11:59:05 +02:00
# Certificate type:
# - selfsigned: Self signed certificate. Not recommended for production use.
# Users will see an ERROR when connected to web page.
# - owncert: Valid certificate purchased in a Internet services company.
# Please put the certificates in same folder as docker-compose.yml
# file with names certificate.key and certificate.cert.
2020-04-06 11:59:05 +02:00
# - letsencrypt: Generate a new certificate using letsencrypt. Please set the
# required contact email for Let's Encrypt in LETSENCRYPT_EMAIL
# variable.
CERTIFICATE_TYPE=selfsigned
2020-04-06 11:59:05 +02:00
# If CERTIFICATE_TYPE=letsencrypt, you need to configure a valid email for
# notifications
LETSENCRYPT_EMAIL=user@example.com
2020-03-27 16:09:32 +01:00
# Kurento Media Server image
# --------------------------
# Docker hub kurento media server: https://hub.docker.com/r/kurento/kurento-media-server-dev
2020-03-27 16:46:32 +01:00
# Uncomment the next line and define this variable with KMS image that you want use
2020-04-06 11:59:05 +02:00
# KMS_IMAGE=kurento/kurento-media-server-dev:6.13
2020-03-27 16:46:32 +01:00
# Kurento Media Server Level logs
# -------------------------------
2020-04-06 11:59:05 +02:00
# Uncomment the next line and define this variable to change
2020-03-27 16:46:32 +01:00
# the verbosity level of the logs of KMS
# Documentation: https://doc-kurento.readthedocs.io/en/stable/features/logging.html
# KMS_DEBUG_LEVEL=3,Kurento*:4,kms*:4,sdp*:4,webrtc*:4,*rtpendpoint:4,rtp*handler:4,rtpsynchronizer:4,agnosticbin:4
# Openvidu Server Level logs
# --------------------------
# Uncomment the next line and define this variable to change
# the verbosity level of the logs of Openvidu Service
# RECOMENDED VALUES: INFO for normal logs DEBUG for more verbose logs
2020-04-06 11:59:05 +02:00
# OV_CE_DEBUG_LEVEL=INFO