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
3. access app at `<code-server-root>/absproxy/3454` e.g. `http://localhost:8080/absproxy/3454`
371
371
372
372
Read more about `publicPath` in the [Vue.js docs](https://cli.vuejs.org/config/#publicpath)
373
+
374
+
## SSH into code-server on VS Code
375
+
376
+
[](https://ohmyz.sh/)[](vscode:extension/ms-vscode-remote.remote-ssh)
377
+
378
+
Follow these steps where code-server is running:
379
+
1. Get `OpenSSH-Server`, `wget`, and `unzip` before getting ngrok. Also, run `sudo apt update` so you get the latest versions.
380
+
```bash
381
+
sudo apt update
382
+
sudo apt install wget unzip openssh-server
383
+
```
384
+
2. Start OpenSSH-Server and set the password of your computer. Eg. If you use a Railway deployment, the user is `coder` and so, the command to change the password would be `sudo passwd coder`.
385
+
```bash
386
+
sudo service ssh start
387
+
sudo passwd {user} # replace user with your code-server user
0 commit comments