We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(如果我想修改配置文件添加内网穿透)[https://toutyrater.github.io/app/reverse.html]。在哪里找配置文件
{ "reverse":{ //这是 B 的反向代理设置,必须有下面的 portals 对象 "portals":[ { "tag":"portal", "domain":"private.cloud.com" // 必须和上面 A 设定的域名一样 } ] }, "inbounds": [ { // 接受 C 的inbound "tag":"external", // 标签,路由中用到 "port":80, // 开放 80 端口,用于接收外部的 HTTP 访问 "protocol":"dokodemo-door", "settings":{ "address":"127.0.0.1", "port":80, //假设 NAS 监听的端口为 80 "network":"tcp" } }, // 另一个 inbound,接受 A 主动发起的请求 { "tag": "tunnel",// 标签,路由中用到 "port":16823, "protocol":"vmess", "settings":{ "clients":[ { "id":"b831381d-6324-4d53-ad4f-8cda48b30811", "alterId":64 } ] } } ], "routing":{ "rules":[ { //路由规则,接收 C 请求后发给 A "type":"field", "inboundTag":[ "external" ], "outboundTag":"portal" }, { //路由规则,让 B 能够识别这是 A 主动发起的反向代理连接 "type":"field", "inboundTag":[ "tunnel" ], "domain":[ "full:private.cloud.com" ], "outboundTag":"portal" } ] } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
(如果我想修改配置文件添加内网穿透)[https://toutyrater.github.io/app/reverse.html]。在哪里找配置文件
The text was updated successfully, but these errors were encountered: