diff options
author | Tianling Shen <cnsztl@immortalwrt.org> | 2021-09-16 03:15:04 +0800 |
---|---|---|
committer | Tianling Shen <cnsztl@immortalwrt.org> | 2021-09-18 01:38:54 +0800 |
commit | 16e453e4acc39eb0a3bc403f37697cd4083cdf14 (patch) | |
tree | aa859aea765b70923dc5a380c31f3f3b3964e91b /net/v2raya/files/v2raya.config | |
parent | 5d1794e6dc79b13cdb43e86d6c4e01049c360e59 (diff) |
v2raya: Update to 1.5.3
- Added missing conffiles
- Refreshed init srcipt to adapt the new arguments
- Renamed package name to lowercase (suggestion from upstream)
- Updated dependencies and license
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
Diffstat (limited to 'net/v2raya/files/v2raya.config')
-rw-r--r-- | net/v2raya/files/v2raya.config | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/net/v2raya/files/v2raya.config b/net/v2raya/files/v2raya.config index 04b1a3f81..841b90a2a 100644 --- a/net/v2raya/files/v2raya.config +++ b/net/v2raya/files/v2raya.config @@ -8,11 +8,22 @@ config v2raya 'config' # v2rayA configuration directory option config '/etc/v2raya' - # force open ipv6 - option force_ipv6_on '0' + # Make sure your IPv6 network works fine before you turn it on. + # Optional values: auto, on, off. + option ipv6_support 'auto' - # ssr, pingTunnel, etc. - option plugin_listen_port '32346' + # Optional values: trace, debug, info, warn or error + option log_level 'info' + + # The path of log file + option log_file '/tmp/v2raya.log' + + # Maximum number of days to keep log files + option log_max_days '3' + + option log_disable_color '1' + + option log_disable_timestamp '0' # Executable v2ray binary path. Auto-detect if put it empty option v2ray_bin '' @@ -24,6 +35,3 @@ config v2raya 'config' # Example: /etc/v2raya/grpc_certificate.crt,/etc/v2raya/grpc_private.key option vless_grpc_inbound_cert_key '' - # Print detailed v2ray-core log to stdout - option verbose '0' - |