Skip to content

Commit

Permalink
v2raya: do not allow changing config/log directory
Browse files Browse the repository at this point in the history
We need stable path to persist configurations and read log from LuCI.

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
  • Loading branch information
1715173329 committed Jan 26, 2024
1 parent 7cc18bc commit e7ccb9c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion v2raya/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=v2rayA
PKG_VERSION:=2.2.4.6
PKG_RELEASE:=1
PKG_RELEASE:=2

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/v2rayA/v2rayA/tar.gz/v$(PKG_VERSION)?
Expand Down
6 changes: 0 additions & 6 deletions v2raya/files/v2raya.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ config v2raya 'config'
# Listening address
option address '0.0.0.0:2017'

# v2rayA configuration directory
option config '/etc/v2raya'

# Make sure your IPv6 network works fine before you turn it on.
# Optional values: auto, on, off.
option ipv6_support 'auto'
Expand All @@ -19,9 +16,6 @@ config v2raya 'config'
# Optional values: trace, debug, info, warn or error
option log_level 'info'

# The path of log file
option log_file '/var/log/v2raya/v2raya.log'

# Maximum number of days to keep log files
option log_max_days '3'

Expand Down
5 changes: 3 additions & 2 deletions v2raya/files/v2raya.init
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,13 @@ start_service() {
procd_set_param command "$PROG"
procd_set_param env XDG_DATA_HOME="/usr/share"

append_env "config" "/etc/v2raya"
append_env "log_file" "/var/log/v2raya/v2raya.log"

append_env_arg "config" "address" "0.0.0.0:2017"
append_env_arg "config" "config" "/etc/v2raya"
append_env_arg "config" "ipv6_support" "auto"
append_env_arg "config" "nftables_support" "auto"
append_env_arg "config" "log_level" "info"
append_env_arg "config" "log_file" "/var/log/v2raya/v2raya.log"
append_env_arg "config" "log_max_days" "3"
append_env_arg "config" "v2ray_bin"
append_env_arg "config" "v2ray_confdir"
Expand Down

0 comments on commit e7ccb9c

Please sign in to comment.