-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
61 lines (61 loc) · 1.44 KB
/
settings.json
File metadata and controls
61 lines (61 loc) · 1.44 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
[
{
"name": "INSTANCE_TITLE",
"label": "Service name",
"type": "text",
"description": "The title for the new service",
"default": "Blast"
},
{
"name": "INSTANCE_PORT_1",
"label": "Port number",
"type": "number",
"description": "The main port number for the new instance (Nginx server)",
"default": 8072
},
{
"name": "INSTANCE_PORT_2",
"label": "Port number",
"type": "number",
"description": "Secondary port number for the new instance (Sequenceserver)",
"default": 8073
},
{
"name": "INSTANCE_PORT_3",
"label": "Port number",
"type": "number",
"description": "The port number for the FTP server",
"default": 8074
},
{
"name": "ADMIN_USER",
"label": "Admin account",
"type": "text",
"description": "The admin account used for administrate your BLAST server."
},
{
"name": "ADMIN_PASS",
"label": "Admin password",
"type": "password",
"description": "The password for the admin account."
},
{
"name": "MAX_FILE_SIZE",
"label": "Max upload file size",
"type": "number",
"description": "Max file size for file upload (in MB). Bigger files should be uploaded using other protocol (e.g. using FTP).",
"default": 200
},
{
"name": "FTP_USER",
"label": "FTP user account:",
"type": "text",
"description": "The FTP account used for uploading bigger files."
},
{
"name": "FTP_PASS",
"label": "FTP password:",
"type": "password",
"description": "The password for the FTP account."
}
]