mirror of https://github.com/OpenVidu/openvidu.git
29 lines
1.2 KiB
Bash
29 lines
1.2 KiB
Bash
# OpenVidu configuration
|
|
# ----------------------
|
|
# Documentation: https://openvidu.io/docs/reference-docs/openvidu-server-params/
|
|
|
|
# OpenVidu SECRET used for apps and to access to the inspector. Change it.
|
|
OPENVIDU_SECRET=MY_SECRET
|
|
|
|
# Domain name. If you do not have one, the public IP of the machine.
|
|
DOMAIN_OR_PUBLIC_IP=openvidu.example.com
|
|
|
|
# Openvidu Folder Record used for save the openvidu recording videos. Change it
|
|
# with the folder you want to use from your host.
|
|
OPENVIDU_RECORDING_FOLDER=/opt/recordings
|
|
|
|
# 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.
|
|
# - letsencrypt: Generate a new certificate using letsencrypt. Please set the
|
|
# required contact email for Let's Encrypt in LETSENCRYPT_EMAIL
|
|
# variable.
|
|
CERTIFICATE_TYPE=selfsigned
|
|
|
|
# If CERTIFICATE_TYPE=letsencrypt, you need to configure a valid email for
|
|
# notifications
|
|
LETSENCRYPT_EMAIL=user@example.com
|