-
Notifications
You must be signed in to change notification settings - Fork 17
/
local.json
30 lines (30 loc) · 946 Bytes
/
local.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
{
"//": "For production, you would normally want the number of processes to match the number of cores, but for debugging, using 1 is much easier:",
"processes": 1,
"//": "This is the HTTP port to listen on (default to the PORT environment variable or 80)",
"port": null,
"//": "Indicates whether the console should run",
"repl": true,
"//": "Indicates a TCP/port connection for the console (omit to disable)",
"replPort": 5555,
"//": "Database settings",
"database": {
"connection":"jdbc:mysql://localhost/wiki?user=root&password=root&useUnicode=true&characterEncoding=utf-8&autoReconnect=true",
"type": "mysql",
"host": "localhost",
"port": 8889,
"name": "test"
},
"mail": {
"host":"mail.site.com",
"defaultFrom": "[email protected]"
},
"security":{
"//": "Bypass security for initial setup",
"bypass": true,
"//": "List of admins",
"admins":["admin"]
},
"//": "Default location of data",
"dataFolder": "data"
}