From 4af0833cc485b559c90e3afb801102f5d1c32538 Mon Sep 17 00:00:00 2001 From: yshtcn Date: Sun, 23 Jul 2023 13:21:18 +0800 Subject: [PATCH] Update config.ini MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 增加了注释解释 - 增加了socks5代理支持 --- config.ini | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/config.ini b/config.ini index 0b6876f..c34c160 100644 --- a/config.ini +++ b/config.ini @@ -1,3 +1,13 @@ [Settings] -interval = 10 +# 心跳间隔(以秒为单位) +interval = 60 + +# 心跳URL heartbeat_url = http://example.com/heartbeat + +# 是否启用代理,0为不启用,1为启用 +proxy_enabled = 1 + +# 代理URL,格式为:socks5://username:password@localhost:1080 +# 如果代理不需要用户名和密码,可以省略,例如:socks5://localhost:1080 +proxy_url = socks5://username:password@localhost:1080