-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
executable file
·58 lines (58 loc) · 1.13 KB
/
config.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
51
52
53
54
55
56
57
58
{
"ssl": {
"cert": "/etc/letsencrypt/live/shriki.org/fullchain.pem",
"key": "/etc/letsencrypt/live/shriki.org/privkey.pem",
"conf": [
["Options", "Compression"],
["min_protocol", "TLSv1.3"]
]
},
"listeners": [
{
"address": "::",
"port": 80,
"https": false
},
{
"address": "::",
"port": 443,
"https": true,
"cert": "",
"key": ""
}
],
"app": {
"run_as_daemon": true,
"number_of_threads": 4,
"enable_session": false,
"document_root": "./resources/",
"home_page": "index.html",
"file_types": [
"gif",
"png",
"jpg",
"js",
"css",
"html",
"ico",
"swf",
"xap",
"apk",
"cur",
"xml",
"svg",
"webp"
],
"log": {
"log_path": "/var/log",
"logfile_base_name": "",
"log_size_limit": 100000000,
"log_level": "TRACE"
}
},
"plugins": [
{
"name": "drogon::plugin::SecureSSLRedirector"
}
]
}