You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
global: - move instance limit to daemon Web: - fix auth error page css
and reset password form not loading admin: - add config file edit/save -
make ban and delete safe functions - cpu and mem for sessions - refresh
button - fix layout and other bug fixes Daemon: - fix responses - fix
cpu and mem stats - add workspace stats endpoint - remove unused config
options - move dns servers config to .session - add memory limit
Workspaces: - Fix debian wallpaper not always applying
Copy file name to clipboardExpand all lines: apps/daemon/schema.json
+16-17Lines changed: 16 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,6 @@
5
5
"Config": {
6
6
"additionalProperties": false,
7
7
"properties": {
8
-
"dnsServers": {
9
-
"description": "DNS servers for the session to use.",
10
-
"items": {
11
-
"type": "string"
12
-
},
13
-
"type": "array"
14
-
},
15
8
"docker": {
16
9
"$ref": "#/definitions/DockerConfig"
17
10
},
@@ -96,22 +89,28 @@
96
89
"SessionConfig": {
97
90
"additionalProperties": false,
98
91
"properties": {
99
-
"bitDepth": {
100
-
"default": 24,
101
-
"description": "Bit depth for the display",
102
-
"type": "number"
103
-
},
104
92
"blockedProcessNames": {
105
-
"description": "List of processes to block on containers. Useful if you want to stop the use of crypto miners or other resource hungry processes.",
93
+
"description": "List of processes to block on containers. Useful if you want to stop the use of crypto miners or other resource hungry processes. Will also kill processes on the host. Will be overhauled later",
106
94
"items": {
107
95
"type": "string"
108
96
},
109
97
"type": "array"
110
98
},
111
-
"resolution": {
112
-
"default": "1920x1080",
113
-
"description": "Resolution for the display",
114
-
"type": "string"
99
+
"dnsServers": {
100
+
"description": "DNS servers for the session to use.",
101
+
"items": {
102
+
"type": "string"
103
+
},
104
+
"type": "array"
105
+
},
106
+
"limit": {
107
+
"description": "Max number of sessions allowed on this instance",
108
+
"type": "number"
109
+
},
110
+
"memoryLimit": {
111
+
"default": "undefined",
112
+
"description": "Maximum memory a container can use, in megabytes",
113
+
"type": "number"
115
114
},
116
115
"showVncPassword": {
117
116
"description": "Doesn't unset $VNCPASSWORD in containers",
0 commit comments