blob: 5d11d32559a37433842cbb4648a59c0b40b16ca4 (
plain)
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
|
#
# Let's Chat Settings
#
# See defaults.yml for all available options
#
env: production # development / production
http:
enable: true
host: 'localhost'
port: 5000
https:
enable: false
port: 5001
key: key.pem
cert: certificate.pem
files:
enable: true
provider: local
local:
dir: uploads
xmpp:
enable: false
port: 5222
domain: example.com
database:
uri: mongodb://localhost/letschat
secrets:
cookie: secretsauce
auth:
providers: [local]
local:
enableRegistration: true
|