code-server 是一个基于 Web 的 VS Code开源在线编辑器,允许您在任何地方、任何设备上通过浏览器编写代码。它提供与本地安装的 VS Code 一致的体验,支持远程开发和协作。 - 非常适合需要远程工作或希望在不同设备间无缝切换的开发者 - 用于管理服务器也非常方便
curl -fsSL https://code-server.dev/install.sh | sh
安装完成后可在配置文件中修改端口和设置密码
~/.config/code-server/config.yaml
bind-addr: 127.0.0.1:8080
auth: password
password: your_password
cert: false
为提高安全性,还需要配合nginx开启https,nginx反向代理设置
server {
listen 80;
# listen 443 ssl; #开启https
server_name code.your_domain.com;
location / {
# if ($server_port = 80 ) { # http重定向到https
# return 302 https://$host$request_uri;
# }
proxy_pass http://127.0.0.1:8080;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
proxy_set_header Accept-Encoding gzip;
}
# ssl_certificate /path_to/cert.pem; # https证书路径
# ssl_certificate_key /path_to/key.pem; # https证书路径
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
}
共[[list[16]?.comment_count]]条评论
[[v.content]]
[[v2.content]]