Serv00运行Xray做代理,套Cloudflare

AI摘要

正在生成中……


开启权限

第一步需要做的就是开启可以运行自己应用的权限。Additional services -> Run your own applications -> Enabled 如果不开启这一项,自己的用户目录下的所有文件都无法添加可执行权限。

image-20240813202559178

上传 xray

进入 xray 主页:https://github.com/XTLS/Xray-core/releases/tag/v1.8.23

下载:Xray-freebsd-64.Zip

image-20240813202700594

1
2
3
4
# 创建Xray文件夹
mkdir Xray && cd Xray
# 解压
unzip Xray-freebsd-64.Zip

配置反向代理

添加一个端口,后面会用到

image-20240813204135499

添加域名,开启反向代理到你自己申请的端口

image-20240813204352213

绑定域名

查看服务器ip

image-20240813204830258

进入 CF 的管理后台,绑定一个域名至服务器 IP,开启小云朵。

image-20240813205027971

添加配置文件

在服务器上,xray 的文件夹,vi config.json 创建一个配置文件,注意,你需要修改6614为你自己申请的端口,修改一个UUID,一个path路径,修改完后运行 xray。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"log": {
"loglevel": "warning"
},
"routing": {
"domainStrategy": "IPIfNonMatch",
"rules": [
{
"type": "field",
"ip": [
"geoip:cn",
"geoip:private"
],
"outboundTag": "block"
}
]
},
"inbounds": [
{
"listen": "0.0.0.0",
"port": 6614,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "fecc0ba6-f68e-408d-ae8e-fe27c25223fc",
"alterId": 0
}
],
"disableInsecureEncryption": false
},
"streamSettings": {
"network": "ws",
"security": "none",
"wsSettings": {
"acceptProxyProtocol": false,
"path": "/test",
"headers": {}
}
},
"sniffing":{
"enabled": false,
"destOverride": [
"http",
"tls"
]
}
}
],
"outbounds": [
{
"protocol": "freedom",
"tag": "direct"
},
{
"protocol": "blackhole",
"tag": "block"
}
]
}


1
nohup ./xray -c config.json &