mirror of
https://github.com/233boy/sing-box.git
synced 2026-05-03 06:14:41 +08:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
09fd2df4ff | ||
|
|
596efd5659 | ||
|
|
3d942cf5c2 |
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
args=$@
|
||||
is_sh_ver=v1.01
|
||||
is_sh_ver=v1.04
|
||||
|
||||
. /etc/sing-box/sh/src/init.sh
|
||||
11
src/core.sh
11
src/core.sh
@@ -443,6 +443,7 @@ change() {
|
||||
[[ $is_auto_get_config ]] && msg "\n自动选择: $is_config_file"
|
||||
}
|
||||
is_old_net=$net
|
||||
[[ $is_tcp_http ]] && net=http
|
||||
[[ $host ]] && net=$is_protocol-$net-tls
|
||||
[[ $is_reality && $net_type =~ 'http' ]] && net=rh2
|
||||
|
||||
@@ -923,7 +924,7 @@ add() {
|
||||
fi
|
||||
|
||||
if [[ $is_use_tls ]]; then
|
||||
if [[ ! $is_no_auto_tls && ! $is_caddy && ! $is_gen ]]; then
|
||||
if [[ ! $is_no_auto_tls && ! $is_caddy && ! $is_gen && ! $is_dont_test_host ]]; then
|
||||
# test auto tls
|
||||
[[ $(is_test port_used 80) || $(is_test port_used 443) ]] && {
|
||||
get_port
|
||||
@@ -1066,9 +1067,9 @@ get() {
|
||||
is_config_name=$is_config_file
|
||||
|
||||
if [[ $is_caddy && $host && -f $is_caddy_conf/$host.conf ]]; then
|
||||
tmp_tlsport=$(egrep -o "$host:[1-9][0-9]?+" $is_caddy_conf/$host.conf | sed s/.*://)
|
||||
is_tmp_https_port=$(egrep -o "$host:[1-9][0-9]?+" $is_caddy_conf/$host.conf | sed s/.*://)
|
||||
fi
|
||||
[[ $tmp_tlsport ]] && is_https_port=$tmp_tlsport
|
||||
[[ $is_tmp_https_port ]] && is_https_port=$is_tmp_https_port
|
||||
[[ $is_client && $host ]] && port=$is_https_port
|
||||
get protocol $is_protocol-$net_type
|
||||
fi
|
||||
@@ -1290,6 +1291,7 @@ info() {
|
||||
[[ $net == "http" ]] && {
|
||||
net=tcp
|
||||
is_type=http
|
||||
is_tcp_http=1
|
||||
is_info_show+=(5)
|
||||
is_info_str=(${is_info_str[@]/http/tcp http})
|
||||
}
|
||||
@@ -1366,6 +1368,9 @@ info() {
|
||||
fi
|
||||
msg "$a $tt= \e[${is_color}m${is_info_str[$i]}\e[0m"
|
||||
done
|
||||
if [[ $is_new_install ]]; then
|
||||
warn "首次安装请查看脚本帮助文档: $(msg_ul https://233boy.com/$is_core/$is_core-script/)"
|
||||
fi
|
||||
if [[ $is_url ]]; then
|
||||
msg "------------- ${info_list[12]} -------------"
|
||||
msg "\e[4;${is_color}m${is_url}\e[0m"
|
||||
|
||||
28
src/init.sh
28
src/init.sh
@@ -47,6 +47,17 @@ warn() {
|
||||
echo -e "\n$is_warn $@\n"
|
||||
}
|
||||
|
||||
# load bash script.
|
||||
load() {
|
||||
. $is_sh_dir/src/$1
|
||||
}
|
||||
|
||||
# wget add --no-check-certificate
|
||||
_wget() {
|
||||
# [[ $proxy ]] && export https_proxy=$proxy
|
||||
wget --no-check-certificate "$@"
|
||||
}
|
||||
|
||||
# yum or apt-get
|
||||
cmd=$(type -P apt-get || type -P yum)
|
||||
|
||||
@@ -106,6 +117,12 @@ else
|
||||
fi
|
||||
if [[ -f $is_caddy_bin && -d $is_caddy_dir && $is_caddy_service ]]; then
|
||||
is_caddy=1
|
||||
# fix caddy run; ver >= 2.8.2
|
||||
[[ ! $(grep '\-\-adapter caddyfile' /lib/systemd/system/caddy.service) ]] && {
|
||||
load systemd.sh
|
||||
install_service caddy
|
||||
systemctl restart caddy &
|
||||
}
|
||||
is_caddy_ver=$($is_caddy_bin version | head -n1 | cut -d " " -f1)
|
||||
is_tmp_http_port=$(egrep '^ {2,}http_port|^http_port' $is_caddyfile | egrep -o [0-9]+)
|
||||
is_tmp_https_port=$(egrep '^ {2,}https_port|^https_port' $is_caddyfile | egrep -o [0-9]+)
|
||||
@@ -119,17 +136,6 @@ if [[ -f $is_caddy_bin && -d $is_caddy_dir && $is_caddy_service ]]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
# load bash script.
|
||||
load() {
|
||||
. $is_sh_dir/src/$1
|
||||
}
|
||||
|
||||
# wget add --no-check-certificate
|
||||
_wget() {
|
||||
# [[ $proxy ]] && export https_proxy=$proxy
|
||||
wget --no-check-certificate "$@"
|
||||
}
|
||||
|
||||
load core.sh
|
||||
[[ ! $args ]] && args=main
|
||||
main $args
|
||||
|
||||
@@ -38,8 +38,8 @@ Requires=network-online.target
|
||||
Type=notify
|
||||
User=root
|
||||
Group=root
|
||||
ExecStart=$is_caddy_bin run --environ --config $is_caddyfile
|
||||
ExecReload=$is_caddy_bin reload --config $is_caddyfile
|
||||
ExecStart=$is_caddy_bin run --environ --config $is_caddyfile --adapter caddyfile
|
||||
ExecReload=$is_caddy_bin reload --config $is_caddyfile --adapter caddyfile
|
||||
TimeoutStopSec=5s
|
||||
LimitNPROC=10000
|
||||
LimitNOFILE=1048576
|
||||
|
||||
Reference in New Issue
Block a user