-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.conf
More file actions
74 lines (70 loc) · 2.41 KB
/
env.conf
File metadata and controls
74 lines (70 loc) · 2.41 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"bind" : "0.0.0.0",
"port" : 3000,
"threads" : 40,
"no terminal": false,
"keep_alive_mins": 8,
"ping_interval_mins": 24,
"mapping" : [
{"path":"", "_comment_": "empty string for root",
"CGI": false,
"translated": "./../TJWS/1.x/html"},
{"path":"/cgires/resource",
"CGI": false,
"translated": "./../rust_dev_studio/src/html"},
{"path":"/cgires/resource/ace",
"CGI": false,
"translated": "./../side/ace-builds/src-min-noconflict"},
{"path":"/rustcgi", "_comment_": "Rust Development Studio",
"CGI": true,
"translated": "./../rust_dev_studio"},
{"path":"/terminal", "_comment_": "Rust Web Terminal",
"WS-CGI": true,
"translated": "./../rust_dev_studio/terminal"},
{"path":"/cmd/com",
"WS-CGI": true,
"translated": "./../simcom/rustcom"},
{"path":"/cmd", "_comment_": "Simple Commander in Rust",
"translated": "./../simcom/html"},
{"path":"/cmd/js",
"translated": "./../simcom/js"},
{"path":"/cmd/upload", "_comment_": "+Upload for Simple Commander",
"CGI": true,
"translated": "./../simupload"},
{"path":"/upload/html",
"translated": "./../simupld/html"},
{"path":"/totp/bin", "_comment_": "Simple TOTP using Rust",
"CGI": true,
"translated": "./../simtotp"},
{"path":"/totp",
"translated": "./../simtotp/html"}
],
"log" : {
"out": {
"out _comment_": "file|stdout",
"name": "simhttp-${0}",
"path":"./log",
"max lines": 100000,
"max files": 20
},
"level":0
},
"mime":
[
{"ext":"html", "type":"text/html"},
{"ext":"htm", "type":"text/html"},
{"ext":"txt","type":"text/plain"},
{"ext":"js","type":"text/javascript"},
{"ext":"css","type":"text/css"},
{"ext":"csv","type":"text/csv"},
{"ext":"json","type":"application/json"},
{"ext":"xml","type":"application/xml"},
{"ext":"jpg","type":"image/jpeg"},
{"ext":"jpeg","type":"image/jpeg"},
{"ext":"gif","type":"image/gif"},
{"ext":"svg","type":"image/svg+xml"},
{"ext":"mp3", "type":"audio/mpeg"},
{"ext":"webp", "type":"image/webp"},
{"ext":"ico","type":"image/x-icon"}
]
}