diff options
author | terminaldweller <thabogre@gmail.com> | 2023-03-11 06:40:58 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2023-03-11 06:40:58 +0000 |
commit | 013c71605185653f735b6a7e6fe622becc03e0fa (patch) | |
tree | 65fa452f049078b402cce315e4426130c2858c91 /README.md | |
parent | fixed the quit bug where we were waiting on cancelled asyncio tasks (diff) | |
download | tunneltop-013c71605185653f735b6a7e6fe622becc03e0fa.tar.gz tunneltop-013c71605185653f735b6a7e6fe622becc03e0fa.zip |
we now revive the scheduler if it dies. added a new option to determine which tunnels to auto_start
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -46,6 +46,7 @@ test_command = 'curl -s -o /dev/null -s -w "%{http_code}" -k -I -4 --socks5 sock test_command_result = "200" test_interval = 300 test_timeout = 10 +auto_start = false [tunnel.socks5_3] address = "127.0.0.1" @@ -55,6 +56,7 @@ test_command = 'curl -s -o /dev/null -s -w "%{http_code}" -k -I -4 --socks5 sock test_command_result = "200" test_interval = 300 test_timeout = 10 +auto_start = true ``` The tunnel names must be unique.</br> |