github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/docs/configuration/outbound/tor.zh.md (about) 1 ### 结构 2 3 ```json 4 { 5 "type": "tor", 6 "tag": "tor-out", 7 8 "executable_path": "/usr/bin/tor", 9 "extra_args": [], 10 "data_directory": "$HOME/.cache/tor", 11 "torrc": { 12 "ClientOnly": 1 13 }, 14 15 ... // 拨号字段 16 } 17 ``` 18 19 !!! info "" 20 21 默认安装不包含嵌入式 Tor, 参阅 [安装](/zh/#_2)。 22 23 ### 字段 24 25 #### executable_path 26 27 Tor 可执行文件路径 28 29 如果设置,将覆盖嵌入式 Tor。 30 31 #### extra_args 32 33 启动 Tor 时传递的附加参数列表。 34 35 #### data_directory 36 37 ==推荐== 38 39 Tor 的数据目录。 40 41 如未设置,每次启动都需要长时间。 42 43 #### torrc 44 45 torrc 参数表。 46 47 参阅 [tor(1)](https://linux.die.net/man/1/tor)。 48 49 ### 拨号字段 50 51 参阅 [拨号字段](/zh/configuration/shared/dial/)。