赞
踩
code-server是什么,请点我查看
linux安装code-server过程,请看上面github的说明即可,安装完成之后,执行code-server 即可启动服务,
想直接在浏览器里面访问http://127.0.0.1:8080是不行的,因此我们需要借助nginx代理来访问,具体配置如下,
location /codeServer/ {
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;
}
重启nginx服务,nginx -t && nginx -s reload,浏览器访问https://www.lgfq.work/codeServer/,出现如下页面,表明安装部署正确,
这里提示输入密码,密码在安装用户的用户根目录下,具体文件是/root/.config/code-server/config.yaml,请看截图,
输入密码后,打开一个有代码的目录,就可以愉快的写代码了,
code-server后台运行命令:nohup code-server &
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。