|
1 年之前 | |
---|---|---|
Shadowsocks-TCP | 4 年之前 | |
Shadowsocks-Websocket-Web-TLS | 4 年之前 | |
Shadowsocks-gRPC-Web-TLS | 4 年之前 | |
Socks5-TLS | 4 年之前 | |
Trojan-TCP-TLS (minimal) | 5 年之前 | |
VLESS-H2C-Caddy2 | 5 年之前 | |
VLESS-TCP | 2 年之前 | |
VLESS-TCP-TLS | 4 年之前 | |
VLESS-TCP-TLS (maximal by rprx) | 4 年之前 | |
VLESS-TCP-TLS (minimal by rprx) | 4 年之前 | |
VLESS-TCP-TLS-WS (recommended) | 4 年之前 | |
VLESS-TCP-TLS-proxy protocol | 4 年之前 | |
VLESS-gRPC-TLS | 4 年之前 | |
VLESS-mKCPSeed | 4 年之前 | |
VMess-HTTP | 4 年之前 | |
VMess-HTTP2 | 4 年之前 | |
VMess-TCP | 4 年之前 | |
VMess-TCP-TLS | 4 年之前 | |
VMess-Websocket | 4 年之前 | |
VMess-Websocket-TLS | 4 年之前 | |
VMess-mKCPSeed | 4 年之前 | |
how-to-choose | 2 年之前 | |
v5 | 1 年之前 | |
.editorconfig | 5 年之前 | |
.gitignore | 5 年之前 | |
README.ENG.md | 2 年之前 | |
README.md | 2 年之前 |
#v2ray-examples
Here are some V2Ray configuration examples for reference, the content keeps pace with the times, automation scripts, etc. Please do not pull the configuration from here.
Thanks to KiriKira, the author of vTemplate, Yuluowusheng and all the developers of Project V.
You are welcome to make a template for your own configuration and submit a PR.
Templates should adhere to the following standards:
log
section only leaves loglevel
outbounds
, client side should have proxy
and direct
, server side should have direct
and block
geoip:private
should be routed to direct
outbound (server configuration routes to block
outbound)uuid
should be left blank and filled by the user.domainStrategy
in routing
remains the default, which is AsIs
.{
"log": {
"loglevel": "warning"
},
"routing": {},
"inbounds": [],
"outbounds": []
}
{
"log": {
"loglevel": "warning"
},
"routing": {
"domainStrategy": "AsIs",
"rules": [
{
"ip": [
"geoip:private"
],
"outboundTag": "direct",
"type": "field"
}
]
},
"inbounds": [
{
"port": 1080,
"protocol": "socks",
"settings": {
"auth": "noauth",
"udp": true
},
"tag": "socks"
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"vnext": [
{
"users": [
{
"id": ""
}
],
"port": 1234,
"address": "Your_IP_Address"
}
]
}
},
{
"protocol": "freedom",
"tag": "direct"
}
]
}
{
"log": {
"loglevel": "warning"
},
"routing": {
"domainStrategy": "AsIs",
"rules": [
{
"ip": [
"geoip:private"
],
"outboundTag": "blocked",
"type": "field"
}
]
},
"inbounds": [
{
"port": 1234,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "",
}
]
}
}
],
"outbounds": [
{
"protocol": "freedom"
},
{
"protocol": "blackhole",
"tag": "blocked"
}
]
}
Additional Notes:
Although Websocket+TLS+Web may be regarded as the best solution at this stage, it is definitely not a solution recommended for novices to try as soon as they come up, let alone the only usage of V2Ray.
At the same time, you should understand that the network conditions in each region are different (mainly referring to the QoS level of different protocols), you can try all the configurations to find the most suitable one for you, try to ask as little as possible, and it is best not to ask "why do I V2Ray so slow?" Questions like that.
have fun!