-
Notifications
You must be signed in to change notification settings - Fork 4
/
options_example.json
50 lines (50 loc) · 1.1 KB
/
options_example.json
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
45
46
47
48
49
50
{
"logging": {
"level": "debug",
"file": ".\/outputlog.json"
},
"database": {
"debug": true,
"uri": "mongodb:\/\/localhost\/memegenerator"
},
"elasticsearch": {
"enable": false,
"host": "localhost:9200",
"loglevel": "warning"
},
"serverName": "Tidal Wave",
"hostname": "memegenerator.com",
"port": null,
"email": {
"serverEmailAddress": "[email protected]",
"transport": "direct",
"options": null
},
"login": {
"auth": [
"facebook",
"google",
"plain"
],
"facebook": {
"clientID": "INSERT_FACEBOOK_CLIENTID_HERE",
"clientSecret": "INSERT_FACEBOOK_SECRET_HERE"
},
"google": {
"clientID": "INSERT_GOOGLE_CLIENTID_HERE",
"clientSecret": "INSERT_GOOGLE_SECRET_HERE"
},
"ldap": {
"server": "ldaps:\/\/myldapserver:636",
"userField": "uid",
"bindDN": "cn=users,dc=com"
}
},
"ssl": false,
"sessionSecret": "t1d4lw4ve",
"credentials": {
"certificateFile": "mycert.pem",
"privateKeyFile": "keystore.pem",
"passphrase": "myPassphrase"
}
}