2022-01-20 21:39:10 +01:00
|
|
|
# --- Ricochet configuration starts here
|
2021-01-30 21:49:05 +01:00
|
|
|
|
2022-01-16 20:33:58 +01:00
|
|
|
# Ricochet server port and host
|
|
|
|
# Change this if you need external access
|
2021-09-15 21:46:08 +02:00
|
|
|
SERVER_PORT=4050
|
2021-01-30 21:49:05 +01:00
|
|
|
SERVER_HOST=localhost
|
|
|
|
|
2022-01-16 20:33:58 +01:00
|
|
|
# Configure the JSON store backend
|
|
|
|
# Available backends: memory, nedb, mongodb
|
|
|
|
# Use nedb or mongodb for persistent storage
|
|
|
|
# Memory store is lost when the server is stopped
|
|
|
|
JSON_STORE_BACKEND=memory
|
2021-01-30 21:49:05 +01:00
|
|
|
|
2022-01-16 20:33:58 +01:00
|
|
|
# Uncomment if you use the nedb store backend
|
|
|
|
#NEDB_DIRNAME=/path/to/data # Any path where Nedb databases will be stored
|
2021-01-30 21:49:05 +01:00
|
|
|
|
2022-01-16 20:33:58 +01:00
|
|
|
# Uncomment if you use the mongodb JSON store backend
|
|
|
|
#MONGODB_URI=
|
|
|
|
#MONGODB_DATABASE=
|
2021-01-30 21:49:05 +01:00
|
|
|
|
2022-01-16 20:33:58 +01:00
|
|
|
# Configure the file store backend
|
|
|
|
# Available backend: memory, disk or s3
|
|
|
|
# Memory store is lost when the server is stopped
|
|
|
|
FILE_STORE_BACKEND=memory
|
2021-01-30 21:49:05 +01:00
|
|
|
|
2022-01-16 20:33:58 +01:00
|
|
|
# Disk file storage configuration
|
|
|
|
# Uncomment for 'disk' file storage
|
|
|
|
#DISK_DESTINATION=/path/to/dir/
|
2021-01-30 21:49:05 +01:00
|
|
|
|
2022-01-16 20:33:58 +01:00
|
|
|
# S3 storage configuration
|
|
|
|
# Uncomment the following lines if you want to use 's3' backend storage
|
|
|
|
#S3_ACCESS_KEY=
|
|
|
|
#S3_SECRET_KEY=
|
|
|
|
#S3_ENDPOINT=
|
|
|
|
#S3_BUCKET=
|
|
|
|
#S3_REGION=
|
|
|
|
#S3_PROXY=
|
|
|
|
#S3_CDN=
|
|
|
|
#S3_SIGNED_URL=
|
|
|
|
|
|
|
|
# Should be a unique long key here
|
2021-11-14 20:56:10 +01:00
|
|
|
RICOCHET_SECRET=YourSuperSecretHere
|
2021-01-30 21:49:05 +01:00
|
|
|
|
|
|
|
# Smtp server configuration
|
2022-01-16 20:33:58 +01:00
|
|
|
# If you let the fake host, sent mails are displayed in the console.
|
2021-01-30 21:49:05 +01:00
|
|
|
EMAIL_HOST=fake
|
|
|
|
EMAIL_PORT=
|
|
|
|
EMAIL_USER=
|
|
|
|
EMAIL_PASSWORD=
|
|
|
|
EMAIL_FROM=
|
2021-05-07 14:13:08 +02:00
|
|
|
|
2022-01-20 21:39:10 +01:00
|
|
|
# To show better logs set to 1 (then use npm run ricochetjs:pino)
|
|
|
|
USE_PINO=0
|
|
|
|
|
2022-01-16 20:33:58 +01:00
|
|
|
# --- Ricochet configuration ends here
|
|
|
|
|
|
|
|
# Wire.io port configuration
|
|
|
|
WIREIO_PORT=4051
|
|
|
|
|
2022-01-18 22:47:27 +01:00
|
|
|
# Secret key generated by Ricochet.js when you've registered the site.
|
|
|
|
# /!\ You MUST customize this value after registering the site to Ricochet.js
|
2022-01-20 21:39:10 +01:00
|
|
|
RICOCHET_SITE_KEY=
|
|
|
|
|
|
|
|
# Webconference Openvidu configuration
|
|
|
|
# You need to enable webconference on the frontend also
|
|
|
|
# See https://docs.openvidu.io for more information
|
|
|
|
OPENVIDU_URL=
|
|
|
|
OPENVIDU_SECRET=
|