The current “best” node deployment method: Detailed steps to set up a Trojan node using Vultr’s VPS.
VPS服务器
连接主机
FinalShell新建连接
输入主机IP和root密码连接
节点搭建
FinalShell#在root目录下新建trojan文件夹 mkdir trojan #进入trojan目录(后续命令均在root/trojan目录下运行) cd trojan 下载[Trojan-Go](https://github.com/p4gefau1t/trojan-go/releases/tag/v0.10.6) wget https://github.com/p4gefau1t/trojan-go/releases/download/v0.10.6/trojan-go-linux-amd64.zip #解压此压缩文件 unzip trojan-go-linux-amd64.zip
#在root/trojan目录下新建配置文件config.json { "run_type": "server", "local_addr": "0.0.0.0", "local_port": 443, "remote_addr": "cloudreve.lee2333.com", "remote_port": 443, "password": [ "passwordmichael" ], "ssl": { "cert": "server.crt", "key": "server.key" } }
# 申请证书: #安装acme curl https://get.acme.sh | sh #安装socat apt install socat #添加软链接 ln -s /root/.acme.sh/acme.sh /usr/local/bin/acme.sh #注册账号 acme.sh --register-account -m [email protected] #开放80、443端口 ufw allow 80 ufw allow 443 #申请证书、 acme.sh --issue -d ty.leonore.tk --standalone -k ec-256 #安装证书 acme.sh --installcert -d ty.leonore.tk --ecc --key-file /root/trojan/server.key --fullchain-file /root/trojan/server.crt #设置Trojan-Go后台运行 nohup ./trojan-go > trojan.log 2>&1 &
|
导入节点
将节点导入v2rayN
- 添加trojan服务器
- 地址:
ty.leonore.tk
- 端口:
443
- 密码:
passwordmichael