Install / Upgrade
Run this on your VPS as root and replace the token with your own token from panel:
USER_TOKEN="YOUR_TOKEN" bash <(curl -4 -s "https://counter-strike-boost.com/Download/install.sh") 1.5.5
/root/vpboost/vpboost and
/etc/agent/vpboost/vpboost-agent.
Agent Env File
Main env file location:
/etc/agent/vpboost/vpboost-agent.env
All values from this file are loaded by systemd into the agent process. The Redirects binary
inherits them when the agent starts it.
| Variable | Default | Used by | Purpose |
|---|---|---|---|
VPBOOST_REDIRECT_TICKET_MODE |
true |
Agent | Adds -ticket arg when launching redirects. |
VPBOOST_TICKET_DEBUG |
0 |
Redirects | Verbose ticket/auth debug logs. |
VPBOOST_QUIET |
1 |
Redirects | Reduces console noise. |
VPBOOST_SCREEN_LOGS |
0 |
Agent | Enables screen session log files. |
VPBOOST_CURL_IPRESOLVE |
v4 |
Redirects | Force cURL DNS resolution mode (v4, v6, any). |
VPBOOST_AUTO_RESTART_ON_SEND_FAIL |
0 |
Redirects | Exit process on persistent send failures for watchdog restart. |
Set Env With One Command
Example profile for debug mode + persistent screen logs:
cat <<'EOF' > /etc/agent/vpboost/vpboost-agent.env
VPBOOST_REDIRECT_TICKET_MODE=true
VPBOOST_TICKET_DEBUG=1
VPBOOST_QUIET=0
VPBOOST_SCREEN_LOGS=1
VPBOOST_CURL_IPRESOLVE=v4
EOF
systemctl daemon-reload
systemctl restart vpboost-agent
Live Logs / Crash Investigation
Most useful commands:
# service logs
journalctl -u vpboost-agent -f
# redirect screen logs (chunk mode)
tail -f /root/vpboost/screen_red-all-1.log
# list active screen sessions
screen -ls
screen_red-all-1.log does not
appear, set
VPBOOST_SCREEN_LOGS=1 and restart the service.
Config Source Flow
install.shcreates initial files and systemd service.vpboost-agent.envis loaded by systemd on service start.- Agent reads env defaults from
config.goif var missing. - Agent starts Redirects; Redirects inherits env and reads
getenv(). - Redirects also fetches runtime data from API endpoints (
/api/getredirectconfig,/api/getports).
Important Paths
/root/vpboost/vpboost
/root/vpboost/screen_red-all-1.log
/etc/agent/vpboost/vpboost-agent
/etc/agent/vpboost/vpboost-agent.env
/etc/systemd/system/vpboost-agent.service