add minecraft protocol

This commit is contained in:
InkerBot
2026-03-05 15:48:45 +08:00
parent daba0d704e
commit 66ded37577
16 changed files with 2447 additions and 8 deletions
+36
View File
@@ -0,0 +1,36 @@
{
"log": {
"level": "info"
},
"inbounds": [
{
"type": "mixed",
"tag": "mixed-in",
"listen": "127.0.0.1",
"listen_port": 1080
}
],
"outbounds": [
{
"type": "minecraft",
"tag": "mc-out",
"server": "127.0.0.1",
"server_port": 25565,
"username": "Steve",
"password": "my-secret-password"
},
{
"type": "direct",
"tag": "direct"
}
],
"route": {
"rules": [
{
"inbound": "mixed-in",
"outbound": "mc-out"
}
],
"final": "direct"
}
}