Install VS Code on a Linux Server
To install VS Code on a Remote/Local Linux Server and access it over browser, we have to install code-server
.
Installation Steps
Step 1
Firstly, we have to install code-server
, we can use their automated script to do that, run -
Note: We can also add code-server
to systemctl by running sudo systemctl enable --now code-server@$USER
to automatically run at boot.
Step 2
For Remote access, we can setup SSL easily by setting up caddy
server as reverse proxy.
To install caddy
server, run -
In /etc/caddy/Caddyfile
make following changes to setup caddy
to create a proxy for us -
Reload caddy
server by running -
Code Server should now be live at https://example.com
Source: HowtoForge
Reference(s)
Last updated