Clash to Clash#
最近 Clash Meta 核心更新了作为服务端的功能(官方介绍点击此链接查看),本次将使用 meta 作为 tuic 服务端。
一键脚本#
wget https://raw.githubusercontent.com/imbalaomao/tuic-install/main/tuic_clash.sh && bash tuic_clash.sh
分步搭建(仅供参考 ——#
1. 更新系统 + 安装必要服务#
apt-get -y update && apt-get -y install wget curl socat net-tools jq
2. 使用 acme.sh 申请证书#
2.1. 安装 acme.sh#
curl https://get.acme.sh | sh
2.2. 使用 acme 申请证书#
~/.acme.sh/acme.sh --set-default-ca --server letsencrypt && ~/.acme.sh/acme.sh --issue -d 你的域名 --standalone --install-cert -d 你的域名 --ecc --fullchain-file /etc/ssl/private/fullchain.cer --key-file /etc/ssl/private/private.key
3. 下载 Clash-meta 最新版并解压#
wget -O /opt/tuic_clash/server.gz $(curl -s https://api.github.com/repos/MetaCubeX/Clash.Meta/releases | jq -r '.[0].assets[13].browser_download_url') && gunzip /opt/tuic_clash/server.gz /opt/tuic_clash/server && chmod +x /opt/tuic_clash/server
4. 设置服务器配置#
首先创建配置文件:
vi /etc/tuic_server.yaml
然后写入以下内容:
tuic-server:
enable: true
listen: 0.0.0.0:端口号
users:
生成一个UUID: 自定义密码
certificate: /etc/ssl/private/fullchain.cer
private-key: /etc/ssl/private/private.key
congestion-controller: bbr
max-idle-time: 8000
authentication-timeout: 1000
alpn:
- h3
5. 配置系统服务#
首先创建 systemctl 文件
nano /etc/systemd/system/tuic_clash.service
然后写入以下内容:
[Unit]
After=network.target
[Service]
Type=simple
Restart=always
ExecStart=/opt/tuic_clash/server -f /opt/tuic_clash/server_config.yaml
[Install]
WantedBy=multi-user.target
最后启用系统服务:
systemctl daemon-reload && systemctl enable --now tuic_clash
备注#
- 查看运行日志:
journalctl -u tuic --output cat -e
- 实时查看日志:
journalctl -u tuic --output cat -f
卸载指南#
- 卸载系统服务
systemctl stop tuic_clash && systemctl disable tuic_clash && systemctl daemon-reload
rm -rf /etc/systemd/system/tuic.service
- 删除运行文件与配置文件
rm -rf /opt/tuic_clash
- 卸载 acme.sh 并删除域名证书
acme.sh uninstall && rm -rf /root/.acme.sh
rm -rf /root/acme.sh