apt -y update && apt -y install wget socat uuid-runtime && wget -O /usr/local/bin/tuic https://github.com/EAimTY/tuic/releases/download/tuic-server-1.0.0/tuic-server-1.0.0-x86_64-unknown-linux-gnu && chmod +x /usr/local/bin/tuic
wget -O /usr/local/etc/config.json https://raw.githubusercontent.com/TinrLin/Tuic-build-tutorial/main/server.json && wget -P /etc/systemd/system https://raw.githubusercontent.com/TinrLin/Tuic-build-tutorial/main/tuic.service
- install acme
curl https://get.acme.sh | sh
- set acme alias
alias acme.sh=~/.acme.sh/acme.sh
- auto update acme
acme.sh --upgrade --auto-upgrade
- Set acme's default CA
acme.sh --set-default-ca --server letsencrypt
- generate certificate(Replace www.example.com with your domain name)
acme.sh --issue -d www.example.com --standalone -k ec-256 --webroot /home/wwwroot/html
- install certificate(Replace www.example.com with your domain name)
acme.sh --install-cert -d www.example.com --ecc --key-file /etc/ssl/private/private.key --fullchain-file /etc/ssl/private/cert.crt
- Generate UUID
uuidgen
- Generate password
openssl rand -base64 32
systemctl daemon-reload && systemctl enable --now tuic.service && systemctl status tuic.service