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
Add new configuration options for custom SSL certificates:
- `cert`: Path to certificate
- `certKey`: Path to certificate key
- `certHost`: Hostname for self-signed certificate
Copy file name to clipboardExpand all lines: src/code-server/README.md
+3
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,9 @@ VS Code in the browser
16
16
| Options Id | Description | Type | Default Value |
17
17
|-----|-----|-----|-----|
18
18
| auth | The type of authentication to use. When 'password' is selected, code-server will auto-generate a password. 'none' disables authentication entirely. | string | password |
19
+
| cert | Path to certificate. A self signed certificate is generated if none is provided. | string | - |
20
+
| certHost | hostname to use when generating a self signed certificate. | string | - |
21
+
| certKey | path to certificate key when using non-generated cert. | string | - |
19
22
| disableFileDownloads | Disable file downloads from Code. When enabled, users will not be able to download files from the editor. | boolean | false |
20
23
| disableFileUploads | Disable file uploads to Code. When enabled, users will not be able to upload files to the editor. | boolean | false |
21
24
| disableGettingStartedOverride | Disable the coder/coder override in the Help: Getting Started page. | boolean | false |
Copy file name to clipboardExpand all lines: src/code-server/devcontainer-feature.json
+15
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,21 @@
10
10
"default": "password",
11
11
"description": "The type of authentication to use. When 'password' is selected, code-server will auto-generate a password. 'none' disables authentication entirely."
12
12
},
13
+
"cert": {
14
+
"type": "string",
15
+
"default": "",
16
+
"description": "Path to certificate. A self signed certificate is generated if none is provided."
17
+
},
18
+
"certHost": {
19
+
"type": "string",
20
+
"default": "",
21
+
"description": "hostname to use when generating a self signed certificate."
22
+
},
23
+
"certKey": {
24
+
"type": "string",
25
+
"default": "",
26
+
"description": "path to certificate key when using non-generated cert."
0 commit comments