Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
qist committed Apr 19, 2023
1 parent cf986b4 commit a3a6dd2
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
-------------------------------------------------------------------------------------------------------------------------------------------------
### 手动安装

```
```bash
# 下载
wget -N --no-check-certificate -O /usr/local/xray-ui-linux-amd64.tar.gz https://github.com/qist/xray-ui/releases/latest/download/xray-ui-linux-amd64.tar.gz

Expand All @@ -68,13 +68,13 @@ wget -N --no-check-certificate -O /usr/local/xray-ui-linux-amd64.tar.gz https://

### VPS直接运行一键脚本

```
```bash
wget -N https://raw.githubusercontent.com/qist/xray-ui/main/install.sh && bash install.sh
```

#### 编译

```
```bash
git clone https://github.com/qist/xray-ui.git

cd xray-ui
Expand All @@ -93,9 +93,11 @@ debian/ubuntu解决方案
apt install gcc-aarch64-linux-gnu
CGO_ENABLED=1 GOARCH=arm64 CC="aarch64-linux-gnu-gcc" go build -o xray-ui/xray-ui -ldflags '-linkmode "external" -extldflags "-static"' main.go
```

--------------------------------------------------------------------------------------------------------------------------------------------------
### nginx 代理设置
```

```nginx
upstream xray-ui {
least_conn;
server 127.0.0.1:54321 max_fails=3 fail_timeout=30s;
Expand Down Expand Up @@ -129,6 +131,7 @@ server {
# vpn代理nginx 配置参考
https://github.com/qist/xray/tree/main/xray/nginx
```

--------------------------------------------------------------------------------------------------------------------------------------------------
### 关于TG通知(上游内容)

Expand Down

0 comments on commit a3a6dd2

Please sign in to comment.