-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetting.example.json
More file actions
44 lines (35 loc) · 887 Bytes
/
setting.example.json
File metadata and controls
44 lines (35 loc) · 887 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
43
44
{
"SERVER_NAME": "RhythmCraft",
"PORT": 80,
"USE_SSL": false,
"SSL_CERT": "SSL_CERT",
"SSL_KEY": "SSL_KEY",
"SESSION_SECRET": "SECRET",
"ENFORCE_SOCKET_SECURE": false,
"ENFORCE_SOCKET_STANDARD_PORT": false,
"INDEX": [ "index.htm" , "index.html" ],
"SAVE_FILE_PATH": "FILE_PATH",
"AVATAR_PATH": "AVATAR_PATH",
"COMMENT_DELETE_REQUIRED_COUNT": 2,
"USE_REDIS": false,
"REDIS_HOST": "localhost",
"REDIS_PORT": 6379,
"REDIS_PASSWORD": "",
"MONGODB_HOST": "localhost",
"MONGODB_PORT": 27017,
"MONGODB_USER": "USER",
"MONGODB_PASSWORD": "PASS",
"DBNAME": "rhythmcraft",
"SEARCH_TAGS": [ "TESTTAG" ],
"TOKEN_SECRET": "SECRET",
"SMTP_MAIL_ADDRESS": "example@example.com",
"SMTP_INFO" : {
"host": "example.com",
"port": 465,
"secure": true,
"auth": {
"user": "example@example.com",
"pass": "SECRET"
}
}
}