Skip to content

Commit

Permalink
xray-core: init: add browser dialer support
Browse files Browse the repository at this point in the history
Since v1.4.1, Xray has introduced a new feature to transfer data via
browsers, which can disguise itself as a normal browser to cheat
network censorship.

For more details, see XTLS/Xray-core#421.

Signed-off-by: Tianling Shen <[email protected]>
  • Loading branch information
1715173329 authored and Lienol committed Mar 2, 2024
1 parent 7f79412 commit f49ecc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions net/xray-core/files/xray.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ config xray 'config'
option confdir '/etc/xray'
list conffiles '/etc/xray/config.json'
option datadir '/usr/share/xray'
option dialer ''
option format 'json'

5 changes: 4 additions & 1 deletion net/xray-core/files/xray.init
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ start_service() {
local confdir
local conffiles
local datadir
local dialer
local format
local fullcone

config_get confdir "config" "confdir"
config_get conffiles "config" "conffiles"
config_get datadir "config" "datadir" "/usr/share/xray"
config_get dialer "config" "dialer"
config_get format "config" "format" "json"
config_get fullcone "enabled" "fullcone" "0"

Expand All @@ -35,7 +37,8 @@ start_service() {
procd_append_param command -config "$i"
done
}
procd_append_param command -format "$format"
[ -n "$format" ] && procd_append_param command -format "$format"
[ -n "$dialer" ] && procd_set_param env XRAY_BROWSER_DIALER="$dialer"
[ "$fullcone" -eq "0" ] && procd_set_param env XRAY_CONE_DISABLED="true"
procd_set_param env XRAY_LOCATION_ASSET="$datadir"
procd_set_param file $conffiles
Expand Down

0 comments on commit f49ecc0

Please sign in to comment.