当前位置:   article > 正文

搭建code-server云开发环境_code-server云服务器

code-server云服务器

image.png

官网地址:https://coder.com/

安装code-server

前往code-server官网下载deb包:code-server_4.2.0_amd64.deb

安装deb包:

sudo apt apt install ./*.deb
code-server
  • 1
  • 2

修改配置文件

vim ~/.config/code-server/config.yaml
  • 1
bind-addr: 127.0.0.1:3333
auth: password
password: xxx
  • 1
  • 2
  • 3

配置nginx

sudo vim /etc/nginx/nginx.conf
  • 1
 server {
	# 要监听的公网端口号
	listen 1024 ssl http2;
	# 改为你的网址
	server_name http://cdq.net.cn;
	# 证书的公私钥
	ssl_certificate /data/config/cdq.net.cn_nginx/cdq.net.cn_bundle.crt;
	ssl_certificate_key /data/config/cdq.net.cn_nginx/cdq.net.cn.key;
	location / {
		# code-server的 PORT,要转发的内部端口号
		proxy_pass http://127.0.0.1:3333; 
		proxy_set_header Host $host;
		proxy_set_header Upgrade $http_upgrade;
		proxy_set_header Connection upgrade;
		proxy_set_header Accept-Encoding gzip;
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
sudo systemctl restart nginx
  • 1

开放 1024 端口。

image.png

配置systemd

sudo vim /usr/lib/systemd/system/codeserver.service
  • 1
[Unit]
Description=codeserver
Documentation=https://coder.com/
After=network.target
After=mysqld.service
Wants=network.target

[Service]
User=redis
Group=redis
WorkingDirectory=/home/redis
ExecStart=/usr/bin/code-server >/dev/null 2>&1
Restart=on-abnormal
RestartSec=5s
KillMode=mixed

StandardOutput=null
StandardError=syslog

[Install]
WantedBy=multi-user.target
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

更新配置

sudo systemctl daemon-reload
  • 1

启动服务

sudo systemctl start codeserver
  • 1

设置开机启动

sudo systemctl enable codeserver
  • 1

参考链接

服务器部署code-server

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/165333?site
推荐阅读
相关标签
  

闽ICP备14008679号