"description":"Secret used to connect to OpenVidu Server. This value is required when using the REST API or any server client, as well as when connecting to openvidu-server dashboard",
"defaultValue":"MY_SECRET"
},
{
"name":"openvidu.publicurl",
"type":"java.lang.String",
"description":"URL to connect clients to OpenVidu Server. This must be the full IP of your OpenVidu Server, including protocol, host and port (for example: https://my.openvidu.server.ip:4443). If no port argument is provided, 'server.port' param will be appended to it",
"defaultValue":"local"
},
{
"name":"openvidu.cdr",
"type":"java.lang.Boolean",
"description":"Whether to enable Call Detail Record or not",
"defaultValue":false
},
{
"name":"openvidu.cdr.path",
"type":"java.lang.String",
"description":"Where to store CDR files",
"defaultValue":"log"
},
{
"name":"openvidu.recording",
"type":"java.lang.Boolean",
"description":"Whether to start OpenVidu Server with recording module service available or not (a Docker image will be downloaded during the first execution). Apart from setting this param to true, it is also necessary to explicitly configure sessions to be recorded",
"defaultValue":false
},
{
"name":"openvidu.recording.path",
"type":"java.lang.String",
"description":"Where to store the recorded video files",
"defaultValue":"/opt/openvidu/recordings"
},
{
"name":"openvidu.recording.public-access",
"type":"java.lang.Boolean",
"description":"'true' to allow public access to the video files specified in 'openviu.recording.path'. 'false' to only allow access to authenticated users",
"defaultValue":false
},
{
"name":"openvidu.recording.notification",
"type":"java.lang.String",
"description":"Which users will receive a notfication (client events 'recordingStarted' and 'recordingStopped') when recording starts and stops: 'none', 'publisher_moderator', 'all'",
"defaultValue":"publisher_moderator"
},
{
"name":"openvidu.recording.custom-layout",
"type":"java.lang.String",
"description":"Where should OpenVidu Server look for custom recording layouts",
"defaultValue":"/opt/openvidu/custom-layout"
},
{
"name":"openvidu.recording.version",
"type":"java.lang.String",
"description":"Tag for openvidu/openvidu-recording Docker image"
},
{
"name":"openvidu.recording.autostop-timeout",
"type":"java.lang.Integer",
"description":"Timeout in seconds for automatically stopping the recording of a session when last user disconnects or when it starts and no user is publishing (only if RecordingMode.MANUAL)",
"defaultValue":120
},
{
"name":"openvidu.recording.composed-url",
"type":"java.lang.String",
"description":"URL the composed-video recording dockerized Chrome will use to connect to the recording layouts inside OpenVidu Server host. This will affect all video recording layouts (default one BEST_FIT, all CUSTOM layouts). This allows changing the default URL, which is 'openvidu.publicurl', for those cases where OpenVidu Server host does not allow back and forth connections using the public url from inside the host",
"defaultValue":""
},
{
"name":"openvidu.webhook",
"type":"java.lang.Boolean",
"description":"'true' to enable OpenVidu Server Webhook service. 'false' otherwise",
"defaultValue":false
},
{
"name":"openvidu.webhook.endpoint",
"type":"java.lang.String",
"description":"HTTP endpoint where OpenVidu Server will send Webhook HTTP POST messages",
"defaultValue":""
},
{
"name":"openvidu.webhook.headers",
"type":"java.lang.String",
"description":"List of headers that OpenVidu Server Webhook service will attach to HTTP POST messages",
"defaultValue":"[]"
},
{
"name":"openvidu.webhook.events",
"type":"java.lang.String",
"description":"List of events that will be sent by OpenVidu Server Webhook service",
"description":"Minimum video bandwidth sent from OpenVidu Server to clients, in kbps. 0 means unconstrained",
"defaultValue":300
},
{
"name":"openvidu.sessions.garbage.interval",
"type":"java.lang.Integer",
"description":"How often the garbage collector of non active sessions runs. This helps cleaning up sessions that have been initialized through REST API (and maybe tokens have been created for them) but have had no users connected. Default to 900s (15 mins). 0 to disable non active sessions garbage collector",
"defaultValue":900
},
{
"name":"openvidu.sessions.garbage.threshold",
"type":"java.lang.Integer",
"description":"Minimum time in seconds that a non active session must have been in existence for the garbage collector of non active sessions to remove it. Default to 3600s (1 hour). If non active sessions garbage collector is disabled (property 'openvidu.sessions.garbage.interval' to 0) this property is ignored",
"defaultValue":3600
},
{
"name":"coturn.ip",
"type":"java.lang.String",
"description":"Coturn IP of a deployed coturn server"
},
{
"name":"coturn.redis.ip",
"type":"java.lang.String",
"description":"Redis IP where OpenVidu Server should connect to store TURN credentials",
"defaultValue":"127.0.0.1"
},
{
"name":"coturn.redis.dbname",
"type":"java.lang.String",
"description":"Redis database where to store TURN credentials",
"defaultValue":"0"
},
{
"name":"coturn.redis.password",
"type":"java.lang.String",
"description":"Password to connect OpenVidu Server to Redis database to store TURN credentials",
"defaultValue":"turn"
},
{
"name":"coturn.redis.connect-timeout",
"type":"java.lang.Integer",
"description":"Timeout in seconds when OpenVidu Server is connecting to Redis database to store TURN credentials",
"defaultValue":30
},
{
"name":"coturn.sqlite",
"type":"java.lang.String",
"description":"Path to COTURN sqlite database to add and remove TURN user credentials",