Add linux server scripts

This commit is contained in:
世界
2022-07-30 08:39:34 +08:00
parent 1570c3b6f5
commit 336bceeb97
6 changed files with 75 additions and 0 deletions

16
release/local/install.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -e -o pipefail
DIR=$(dirname "$0")
PROJECT=$DIR/../..
pushd $PROJECT
go install -v -trimpath -ldflags "-s -w -buildid=" -tags "no_gvisor" ./cmd/sing-box
popd
sudo cp $(go env GOPATH)/bin/sing-box /usr/local/bin/
sudo mkdir -p /usr/local/etc/sing-box
sudo cp $DIR/config.json /usr/local/etc/sing-box/config.json
sudo cp $DIR/sing-box.service /etc/systemd/system
sudo systemctl daemon-reload