链式代理

三月 26, 2025 / 3ku / 8阅读 / 0评论

##config.yml

OutboundConfig:
  Enable: true
  Protocol: "proxy"
  Settings:
    Tag: "ss-proxy"  # 代理链标签

##custom_outbound.json

[
  {
    "tag": "ss-proxy",
    "protocol": "shadowsocks",
    "settings": {
      "servers": [
        {
          "address": "",
          "port": ,
          "method": "aes-128-gcm",
          "password": "",
          "network": "tcp,udp"
        }
      ]
    }
  }
]

##route.json

{
  "domainStrategy": "AsIs",
  "rules": [
    {
      "type": "field",
      "outboundTag": "ss-proxy",
      "network": "tcp,udp"
    }
  ]
}

文章作者:3ku

文章链接:http://nanodesu.net/archives/59

版权声明:本博客所有文章除特别声明外,均采用CC BY-NC-SA 4.0 许可协议,转载请注明出处!


评论