XRAY搭建教程x-ui

 准备工作

1、VPS 准备 Debian 9+
2、域名解析到VPS 的IP 上

申请SSL证书

apt update -y
apt install -y curl
apt install -y socat
curl https://get.acme.sh | sh
~/.acme.sh/acme.sh --register-account -m xxxx@gmail.com

更换真实邮箱成功率更高

~/.acme.sh/acme.sh --issue -d xx.xxxx.xxx --standalone

更换你的解析域名

~/.acme.sh/acme.sh --installcert -d xx.xxxx.xxx --key-file /root/private.key --fullchain-file /root/cert.crt

更换你的解析域名,此步完成后会在VPS root 目录下看到
证书公钥/root/cert.crt 及 密钥文件/root/private.key

安装BBR

echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
sysctl -p
lsmod | grep bbr

打完最后一步,应看到 20480 或 16384 说明BBR 开启成功

安装X-ui面板

bash <(curl -Ls https://raw.githubusercontent.com/vaxilu/x-ui/master/install.sh)

公钥路径:/root/cert.crt
私钥路径:/root/private.key

项目地址:https://github.com/vaxilu/x-ui

评论

此博客中的热门博文

始终免费的vps!甲骨文云(oracle)抢注册高性能ARM实例!一键脚本部署!

LINUX | 谷歌云开启SSH及设置root密码