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
Copy file name to clipboardExpand all lines: src/code-server/README.md
+9-2
Original file line number
Diff line number
Diff line change
@@ -15,24 +15,31 @@ VS Code in the browser
15
15
16
16
| Options Id | Description | Type | Default Value |
17
17
|-----|-----|-----|-----|
18
+
| appName | The name to use in branding. Will be shown in titlebar and welcome message. | string | - |
18
19
| 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
20
| 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 | - |
21
+
| certHost |Hostname to use when generating a self signed certificate. | string | - |
22
+
| certKey |Path to certificate key when using non-generated cert. | string | - |
22
23
| disableFileDownloads | Disable file downloads from Code. When enabled, users will not be able to download files from the editor. | boolean | false |
23
24
| disableFileUploads | Disable file uploads to Code. When enabled, users will not be able to upload files to the editor. | boolean | false |
24
25
| disableGettingStartedOverride | Disable the coder/coder override in the Help: Getting Started page. | boolean | false |
| disableUpdateCheck | Disable update check. Without this flag, code-server checks every 6 hours against the latest GitHub release and notifies once a week when updates are available. | boolean | false |
28
29
| disableWorkspaceTrust | Disable Workspace Trust feature. This only affects the current session. | boolean | false |
30
+
| enableProposedAPI | Comma-separated list of VS Code extension IDs to enable proposed API features for. | string | - |
29
31
| extensions | Comma-separated list of VS Code extensions to install. Format: 'publisher.extension[@version]' (e.g., 'ms-python.python,ms-azuretools.vscode-docker'). | string | - |
30
32
| host | The address to bind to for the code-server. Use '0.0.0.0' to listen on all interfaces. | string | 127.0.0.1 |
33
+
| locale | Set VS Code display language and language shown on the login page. Format should be an IETF language tag (e.g., 'en', 'fr', 'zh-CN'). | string | - |
31
34
| logFile | Path to a file to send stdout and stderr logs to from code-server. | string | /tmp/code-server.log |
32
35
| port | The port to bind to for the code-server. | string | 8080 |
36
+
| proxyDomain | Domain used for proxying ports. | string | - |
33
37
| socket | Path to a socket. When specified, host and port will be ignored. | string | - |
34
38
| socketMode | File mode of the socket when using the socket option. | string | - |
39
+
| trustedOrigins | Comma-separated list of trusted-origins to disable origin check for. Useful if not able to access reverse proxy configuration. | string | - |
0 commit comments