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
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
20
23
@@ -370,3 +373,90 @@ module.exports = {
370
373
3. access app at `<code-server-root>/absproxy/3454` e.g. `http://localhost:8080/absproxy/3454`
371
374
372
375
Read more about `publicPath` in the [Vue.js docs](https://cli.vuejs.org/config/#publicpath)
376
+
377
+
## SSH into code-server on VS Code
378
+
379
+
[](https://ohmyz.sh/)[](vscode:extension/ms-vscode-remote.remote-ssh)
380
+
381
+
Follow these steps where code-server is running:
382
+
383
+
1. Install `openssh-server`, `wget`, and `unzip`.
384
+
385
+
````bash
386
+
# example for Debian and Ubuntu operating systems
387
+
sudo apt update
388
+
sudo apt install wget unzip openssh-server
389
+
390
+
2. Start the SSH server and set the password for your user, if you haven't already. If you use [deploy-code-server](https://github.com/cdr/deploy-code-server),
391
+
392
+
```bash
393
+
sudo service ssh start
394
+
sudo passwd {user} # replace user with your code-server user
0 commit comments