爱笔记爱笔记

X-ui与宝塔共存无脑教程

安装宝塔
Centos全新安装命令:根据系统执行框内命令开始安装(大约2分钟完成面板安装)升级后可能需要重启面板

安装宝塔
Centos全新安装命令:根据系统执行框内命令开始安装(大约2分钟完成面板安装)升级后可能需要重启面板

yum install -y wget && wget -O install.sh http://v7.hostcli.com/install/install_6.0.sh && sh install.sh
Debian全新安装命令:

wget -O install.sh http://v7.hostcli.com/install/install-ubuntu_6.0.sh && bash install.sh
Ubuntu/Deepin全新安装命令:

wget -O install.sh http://v7.hostcli.com/install/install-ubuntu_6.0.sh && sudo bash install.sh
Fedora全新安装命令:

wget -O install.sh http://v7.hostcli.com/install/install_6.0.sh && bash install.sh

装完宝塔装一下宝塔的建站LNMP

一键安装X-ui FranzKafkaYu版本FranzKafkaYu版本
*在安装前请确保你的系统支持bash环境,且系统网络正常
⚡从原版升级也可使用该命令,数据不会丢失⚡*

推荐安装3X-UI

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

bash <(wget -qO- https://raw.githubusercontent.com/sing-web/x-ui/main/install_CN.sh) 

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

安装完全后宝塔安全界面放行x-ui端口,我的为54857
Image

请输入图片描述

新建站点
站点DNS解析,新建站点
Image
绑定证书
添加SSL证书
请输入图片描述
Image

反向代理
添加反向代理,随便填一点东西,然后保存
在反向代理主界面点击配置文件,先清空配置文件
然后把以下代码复制到配置文件,保存

location ^~ /qwq {
    proxy_pass http://127.0.0.1:54857/qwq;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /emo {
        proxy_redirect off;
        proxy_pass http://127.0.0.1:58659;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Host $http_host;
        proxy_read_timeout 300s;
        # Show realip in v2ray access.log
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  }
  location / {
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header Range $http_range;
    proxy_set_header If-Range $http_if_range;
    proxy_redirect off;
    proxy_pass http://127.0.0.1:56854;
    # 上传的最大文件尺寸
    client_max_body_size 20000m;
} 

请输入图片描述
Image
X-ui配置路径
面板路径
**端口54857
路径/qwq/**
请输入图片描述
Image
添加入站设置
协议选择Vmess,端口58659,这个跟你你nginx配置文件来,添加个用户
传输选择ws,tls关闭,因为宝塔的nginx接管了tls
路径/emo,这个也是根据你的nginx配置文件来的
请输入图片描述
Image
反向代理Alist伪装
仅支持Linux-x86_64/aarch64平台。

一键脚本

curl -fsSL "https://alist.nn.ci/v2.sh" | bash -s install
更改Alist的默认端口

vim /opt/alist/data/config.json

Image

esc :wq
保存退出,重启Alist

systemctl restart alist.service
客户端配置
跟着图片改就行了
fingerprint(utls)改成chrome

Image
原文
https://www.okaa.io/index.php/2023/11/07/x-ui%E4%B8%8E%E5%AE%9D%E5%A1%94%E5%85%B1%E5%AD%98%E6%97%A0%E8%84%91%E6%95%99%E7%A8%8B/?noamp=mobile

本原创文章未经允许不得转载 | 当前页面:爱笔记 » X-ui与宝塔共存无脑教程