Skip to content

Commit

Permalink
Merge pull request #1391 from fw876/v2raya
Browse files Browse the repository at this point in the history
v2raya: sync upstream
  • Loading branch information
coolsnowwolf authored Jan 29, 2024
2 parents 2729e74 + bbdf63e commit 4961bb3
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 703 deletions.
20 changes: 9 additions & 11 deletions v2raya/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=v2rayA
PKG_VERSION:=1.5.9.1698.1
PKG_VERSION:=2.2.4.6
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)?
PKG_HASH:=247a357230c616bf48309c61d119686e4ad56939c05afef584c45051e9dc6220
PKG_HASH:=22285b2fdf321d68993b38ad738f4af210920757d7944691a78e151abd99cb3a
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/service

PKG_LICENSE:=AGPL-3.0-only
Expand All @@ -23,7 +23,9 @@ PKG_USE_MIPS16:=0
PKG_BUILD_FLAGS:=no-mips16

GO_PKG:=github.com/v2rayA/v2rayA
GO_PKG_LDFLAGS_X:=$(GO_PKG)/conf.Version=$(PKG_VERSION)
GO_PKG_LDFLAGS_X:= \
$(GO_PKG)/conf.Version=$(PKG_VERSION) \
$(GO_PKG)/core/iptables.TproxyNotSkipBr=true

include $(INCLUDE_DIR)/package.mk
include $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk
Expand All @@ -38,11 +40,7 @@ define Package/v2raya
SUBMENU:=Web Servers/Proxies
DEPENDS:=$(GO_ARCH_DEPENDS) \
+ca-bundle \
+iptables-mod-conntrack-extra \
+iptables-mod-extra \
+iptables-mod-filter \
+iptables-mod-tproxy \
+kmod-ipt-nat6 \
+kmod-nft-tproxy \
+xray-core
URL:=https://v2raya.org
endef
Expand All @@ -59,10 +57,10 @@ endef

WEB_FILE:=$(PKG_NAME)-web-$(PKG_VERSION).tar.gz
define Download/v2raya-web
URL:=https://codeload.github.com/v2rayA/v2raya-web/tar.gz/v$(PKG_VERSION)?
URL_FILE:=$(WEB_FILE)
URL:=https://github.com/v2rayA/v2rayA/releases/download/v$(PKG_VERSION)/
URL_FILE:=web.tar.gz
FILE:=$(WEB_FILE)
HASH:=149097a42c3e5fa6f5c3cd46d1bf7ec4546e79ad37c1446b759539e700bd75e2
HASH:=09109442abac13801b7b82433fccbb769657b1d292ac4820af179c297e845135
endef

define Build/Prepare
Expand Down
14 changes: 4 additions & 10 deletions v2raya/files/v2raya.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,17 @@ 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'

# Experimental feature. Make sure you have installed nftables.
# Optional values: auto, on, off.
option nftables_support 'auto'

# 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 All @@ -44,7 +42,3 @@ config v2raya 'config'
# v2rayA will pass in the --stage (pre-start, post-start, pre-stop, post-stop) argument.
option plugin_manager ''

# Specify the certification path instead of automatically generating a self-signed certificate.
# Example: /etc/v2raya/grpc_certificate.crt,/etc/v2raya/grpc_private.key
option vless_grpc_inbound_cert_key ''

7 changes: 4 additions & 3 deletions v2raya/files/v2raya.init
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,19 @@ 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"
append_env_arg "config" "transparent_hook"
append_env_arg "config" "core_hook"
append_env_arg "config" "plugin_manager"
append_env_arg "config" "vless_grpc_inbound_cert_key"
append_env_bool "config" "log_disable_color"
append_env_bool "config" "log_disable_timestamp"

Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 4961bb3

Please sign in to comment.