forked from zoom/rtms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (34 loc) · 1.47 KB
/
.env.example
File metadata and controls
44 lines (34 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#########################################################
# Authentication Configuration
#########################################################
# Your Zoom OAuth Client ID (required)
ZM_RTMS_CLIENT=
# Your Zoom OAuth Client Secret (required)
ZM_RTMS_SECRET=
#########################################################
# Webhook Server Configuration (optional)
#########################################################
# TCP port for webhook server to listen on
# ZM_RTMS_PORT=8080
# URL path for webhook server to listen on
# ZM_RTMS_PATH=/
#########################################################
# SSL/TLS Certificates (optional)
#########################################################
# Path to CA certificate for RTMS connections - uses system CAs if not specified
# ZM_RTMS_CA=/path/to/ca.pem
# Path to SSL certificate file for HTTPS webhook server
# ZM_RTMS_CERT=/path/to/cert.pem
# Path to SSL certificate key file for HTTPS webhook server
# ZM_RTMS_KEY=/path/to/key.pem
# Path to CA certificate for webhook client verification (optional)
# ZM_RTMS_CA_WEBHOOK=/path/to/ca_webhook.pem
#########################################################
# Logging Configuration (optional)
#########################################################
# Log level for verbosity (error, warn, info, debug, trace)
# ZM_RTMS_LOG_LEVEL=info
# Log format (progressive for human-readable, json for machine-readable)
# ZM_RTMS_LOG_FORMAT=progressive
# Enable or disable logging
# ZM_RTMS_LOG_ENABLED=true