-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.openvidu.example
30 lines (22 loc) · 1.1 KB
/
.env.openvidu.example
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
# ChattR configuration
# --------------------------
# First please check above and make sure SUPPORT_DEPRECATED_API is set to false and not
# commented out. If you want to use the call recording feature, set OPENVIDU_RECORDING to true.
# The port where the REST API will listen
SERVER_PORT=5000
# The port where the MongoDB instance will listen
MONGODB_PORT=27017
# The MongoDB collection name to use
MONGODB_COLLECTION_NAME=chattr
# The MongoDB collection where uploaded files will go
MONGODB_UPLOAD_BUCKET_NAME=uploads
# Maximum allowed size for file uploads, in bytes
UPLOAD_MAX_FILE_SIZE=52428800
# Session cookie secret, set it to a random string
SESSION_SECRET=sessionsecret
# Google OAuth 2.0 client id and secret, you'll need this for Google Sign-In
# Documentation: https://developers.google.com/identity/protocols/oauth2/openid-connect
# You'll also need to add ${DOMAIN_OR_PUBLIC_IP} to Authorized JavaScript origins in GCP
# control panel and ${DOMAIN_OR_PUBLIC_IP}/auth/google/callback to Authorized redirect URIs
GOOGLE_CLIENT_ID=clientid
GOOGLE_CLIENT_SECRET=clientsecret