You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
首先说明是在自定义配置的时候会出问题,应该是我的配置比较复杂,inbounddetour除了socks还有一个监听的任意门,所以在切换到自定义配置global的时候这部分返回的是0,0。是不是这部分逻辑要考虑到开别的protocol。之前的log忘记保存了,我是直接改成和useMultipleServer || !useCusProfile一样凑活用,但还是希望改一下。
"inbound" : {
"domainOverride" : [
"http",
"tls"
],
"port" : 8001,
"listen" : "127.0.0.1",
"protocol" : "http",
"settings" : {
"allowTransparent" : true
}
},//主传入http
"inboundDetour" : [
{
"port" : 50001,//在端口50001建立一个任意门监听端口,和上面outbound的端口保持一致
"listen" : "127.0.0.1",//监听本机回环地址
"protocol" : "dokodemo-door",
"settings" : {
"port" : 233,
"network" : "tcp, udp",
"address" : "service.com"
},
"tag" : "bridge"
},
{
"port" : 1080,
"listen" : "127.0.0.1",
"protocol" : "socks",
"settings" : {
"auth" : "noauth",
"timeout" : 0,
"udp" : true
}
}//额外传入socks
],
The text was updated successfully, but these errors were encountered: