We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6f054a commit c8ce380Copy full SHA for c8ce380
doc/guide.md
@@ -134,13 +134,13 @@ Restart `code-server` with (assuming you followed the guide):
134
systemctl --user restart code-server
135
```
136
137
-Now forward local port 8080 to `127.0.0.1:8080` on the remote instance.
+Now forward local port 8080 to `127.0.0.1:8080` on the remote instance by running the following command on your local machine.
138
139
Recommended reading: https://help.ubuntu.com/community/SSH/OpenSSH/PortForwarding.
140
141
```bash
142
# -N disables executing a remote shell
143
-ssh -N -L 8080:127.0.0.1:8080 <instance-ip>
+ssh -N -L 8080:127.0.0.1:8080 [user]@<instance-ip>
144
145
146
Now if you access http://127.0.0.1:8080 locally, you should see `code-server`!
0 commit comments