Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.1 KB

README.md

File metadata and controls

49 lines (34 loc) · 1.1 KB

A working configurations for sing-box (with docker)

This is not automated script or something, but for those who would like to setup by hand.

Anyway, install Docker first!

wget -qO- get.docker.com | bash

# Just add USER to docker group. :)

sudo groupadd docker || true
sudo usermod -aG docker $USER
newgrp docker

# Optional
docker network create proxy-net

TCP Brutal Multiplexing for TCP proxies

bash <(curl -fsSL https://tcp.hy2.sh/)

BBR congestion control for TUIC proxy

sudo nano /etc/sysctl.conf

net.core.default_qdisc=fq
net.ipv4.tcp_congestion_control=bbr

sudo sysctl -p