-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy path.env.default
More file actions
42 lines (28 loc) · 864 Bytes
/
.env.default
File metadata and controls
42 lines (28 loc) · 864 Bytes
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
### Live Helper Chat settings
# Change this hash to your own random string before install
LHC_SECRET_HASH=CHANGE_ME_TO_SOMETHING
# Should webhooks be enabled after install
LHC_WEBHOOKS_ENABLED=1
# Number of workers to use in the script
LHC_RESQUE_WORKERS_COUNT=6
# You can have custom QUEUE which prioritizes specific tasks first
LHC_RESQUE_QUEUE="*"
### DATABASE SETTINGS
MYSQL_ROOT_PASSWORD=lhcroot
MYSQL_DATABASE=lhc
MYSQL_USER=lhc
MYSQL_PASSWORD=lhc
### WEB SETTINGS ###
# On what port we should listen http port.
LHC_PUBLIC_PORT=8081
### NODE JS SETTINGS ###
# This is port for frontend visitors for node js.
LHC_NODE_JS_PORT=8081
REDIS_HOST=redis
# Should online visitors tracked
LHC_NODEJS_TRACK_VISITORS=0
# Should visitors connect to NodeJS in secure way wss
LHC_NODE_JS_SECURE=0
# Redis settings
REDIS_BACKEND=redis:6379
REDIS_BACKEND_DB=1