This repository has been archived by the owner on Aug 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
app.json
52 lines (52 loc) · 1.76 KB
/
app.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
{
"name": "easy-novnc",
"description": "An easy way to run a noVNC instance and proxy with a single binary.",
"repository": "https://github.com/pgaskin/easy-novnc",
"keywords": [
"novnc",
"vnc",
"websockify"
],
"env": {
"NOVNC_ARBITRARY_HOSTS": {
"description": "Allow connection to other hosts",
"value": "true"
},
"NOVNC_ARBITRARY_PORTS": {
"description": "Allow connections to arbitrary ports",
"value": "true"
},
"NOVNC_CIDR_WHITELIST": {
"description": "CIDR whitelist for when arbitrary hosts are enabled (comma separated) (conflicts with blacklist)",
"value": ""
},
"NOVNC_CIDR_BLACKLIST": {
"description": "CIDR blacklist for when arbitrary hosts are enabled (comma separated) (conflicts with blacklist)",
"value": ""
},
"NOVNC_BASIC_UI": {
"description": "Hide connection options from the main screen",
"value": "false"
},
"NOVNC_HOST": {
"description": "The host/ip to connect to by default",
"value": "localhost"
},
"NOVNC_PORT": {
"description": "The port to connect to by default",
"value": "5900"
},
"NOVNC_NO_URL_PASSWORD": {
"description": "Do not allow password in URL params",
"value": "true"
},
"NOVNC_PARAMS": {
"description": "Extra URL params for noVNC (advanced) (comma separated key-value pairs) (e.g. resize=remote)",
"value": ""
},
"NOVNC_DEFAULT_VIEW_ONLY": {
"description": "Use view-only by default",
"value": "false"
}
}
}