Files
yunshu b2833b7845 Update email and domain references to hey.run
Replaced all instances of 'idleleo.com' with 'hey.run' in configuration files and scripts to reflect updated contact and domain information. Also updated the auto_update.sh script to use a new version and API endpoint.
2025-09-11 12:44:14 +08:00

91 lines
2.3 KiB
JSON

{
"log": {
"access": "/var/log/xray/access.log",
"error": "/var/log/xray/error.log",
"loglevel": "warning"
},
"inbounds": [
{
"port": 10086,
"listen": "127.0.0.1",
"tag": "VLESS-ws-in",
"protocol": "VLESS",
"settings": {
"clients": [
{
"id": "UUID",
"level": 0,
"email": "me@hey.run"
}
],
"decryption": "none"
},
"streamSettings": {
"network": "ws",
"security": "none",
"wsSettings": {
"path": "/ray/"
}
}
},
{
"port": 10087,
"listen": "127.0.0.1",
"tag": "VLESS-gRPC-in",
"protocol": "VLESS",
"settings": {
"clients": [
{
"id": "UUID",
"level": 0,
"email": "me@hey.run"
}
],
"decryption": "none"
},
"streamSettings": {
"network": "grpc",
"security": "none",
"grpcSettings": {
"serviceName": "grpc",
"multiMode": true,
"idle_timeout": 20
}
}
}
],
"outbounds": [
{
"protocol": "freedom",
"tag": "direct"
},
{
"protocol": "blackhole",
"tag": "blocked"
}
],
"dns": {
"servers": [
"8.8.8.8",
"8.8.4.4",
"1.1.1.1",
"1.0.0.1",
"localhost",
"https+local://dns.google/dns-query",
"https+local://1.1.1.1/dns-query"
]
},
"routing": {
"domainStrategy": "AsIs",
"rules": [
{
"type": "field",
"inboundTag": [
"VLESS-ws-in",
"VLESS-gRPC-in"
],
"outboundTag": "direct"
}
]
}
}