github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/docs/configuration/outbound/http.zh.md (about)

     1  `http` 出站是一个 HTTP CONNECT 代理客户端
     2  
     3  ### 结构
     4  
     5  ```json
     6  {
     7    "type": "http",
     8    "tag": "http-out",
     9    
    10    "server": "127.0.0.1",
    11    "server_port": 1080,
    12    "username": "sekai",
    13    "password": "admin",
    14    "path": "",
    15    "headers": {},
    16    "tls": {},
    17  
    18    ... // 拨号字段
    19  }
    20  ```
    21  
    22  ### 字段
    23  
    24  #### server
    25  
    26  ==必填==
    27  
    28  服务器地址。
    29  
    30  #### server_port
    31  
    32  ==必填==
    33  
    34  服务器端口。
    35  
    36  #### username
    37  
    38  Basic 认证用户名。
    39  
    40  #### password
    41  
    42  Basic 认证密码。
    43  
    44  #### path
    45  
    46  HTTP 请求路径。
    47  
    48  #### headers
    49  
    50  HTTP 请求的额外标头。
    51  
    52  #### tls
    53  
    54  TLS 配置, 参阅 [TLS](/zh/configuration/shared/tls/#outbound)。
    55  
    56  ### 拨号字段
    57  
    58  参阅 [拨号字段](/zh/configuration/shared/dial/)。