From 9b2fa40052279a3b58e23cb778521510235d3c96 Mon Sep 17 00:00:00 2001 From: asche910 Date: Thu, 17 Oct 2019 23:20:52 +0800 Subject: [PATCH] update config file --- flynet.conf | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/flynet.conf b/flynet.conf index 35538b4..d1d1156 100644 --- a/flynet.conf +++ b/flynet.conf @@ -1,22 +1,29 @@ # flynet config file # -# multiple line you can use `` +# mode support: +# ['http', 'socks5', 'socks5-tcp', 'socks5-udp', 'forward'] +# +# method support: +# ['aes-128-cfb','aes-192-cfb', 'aes-256-cfb', 'aes-128-ctr', 'aes-192-ctr', +# 'aes-256-ctr', 'rc4-md5', 'rc4-md5-6', 'chacha20', 'chacha20-ietf'] +# +# more information at https://github.com/asche910/flynet # [server] -mode = socks-tcp -port = 8888 # listen port for client to connect +mode = socks5-tcp # work mode +port = 8888 # listen port; multi port use space to divide method = "aes-256-cfb" password = -# verbose = true -# log = flynet.log +verbose = true +log = flynet.log [client] -mode = socks-tcp +mode = socks5-tcp # work mode port = 1080 # local socks5 listen port serverAddr = example.com:8080 # include host and port method = "aes-256-cfb" password = -# verbose = true +verbose = false # log = flynet.log \ No newline at end of file