首页 » 域名/vps » 正文

X-ui V2Ray 脚本

更新组件  以防万一

## 以下为 CentOS 命令
yum update -y 
yum install curl wget -y


## 以下为 Debian / Ubuntu 命令
apt update -y 
apt install curl wget -y

一键安装 X-ui 面板

#仅限境外VPS

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

NGINX反代X-ui 面板

    #x-ui面板
    location  ^~ /X-UI {   #面板 url 根路径一致
      proxy_pass http://127.0.0.1:8000;#面板 端口一致
      proxy_set_header Host $host;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

发表评论