Загрузка данных


{
  "log": {
    "level": "info"
  },

  "inbounds": [
    {
      "type": "tun",
      "interface_name": "singbox-tun",
      "inet4_address": "172.19.0.1/30",
      "auto_route": true,
      "strict_route": false,
      "stack": "system"
    }
  ],

  "outbounds": [
    {
      "type": "hysteria2",
      "tag": "proxy",
      "server": "YOUR_SERVER_IP",
      "server_port": 443,
      "password": "YOUR_PASSWORD",

      "tls": {
        "enabled": true,
        "server_name": "YOUR_DOMAIN",
        "insecure": false
      }
    },

    {
      "type": "direct",
      "tag": "direct"
    }
  ],

  "route": {
    "rules": [
      {
        "domain_suffix": [
          "google.com",
          "youtube.com",
          "twitter.com",
          "instagram.com"
        ],
        "outbound": "proxy"
      },

      {
        "outbound": "direct"
      }
    ]
  }
}