An Advanced Web Panel • Built on SagerNet/Sing-Box
Disclaimer: This project is only for personal learning and communication, please do not use it for illegal purposes, please do not use it in a production environment
If you think this project is helpful to you, you may wish to give a🌟
| Features | Enable? | 
|---|---|
| Multi-Protocol | ✔️ | 
| Multi-Language | ✔️ | 
| Multi-Client/Inbound | ✔️ | 
| Advanced Traffic Routing Interface | ✔️ | 
| Client & Traffic & System Status | ✔️ | 
| Subscription Service (link/json + info) | ✔️ | 
| Dark/Light Theme | ✔️ | 
| API Interface | ✔️ | 
| Platform | Architecture | Status | 
|---|---|---|
| Linux | amd64, arm64, armv7, armv6, armv5, 386, s390x | ✅ Supported | 
| Windows | amd64, 386, arm64 | ✅ Supported | 
| macOS | amd64, arm64 | 🚧 Experimental | 
- Panel Port: 2095
 - Panel Path: /app/
 - Subscription Port: 2096
 - Subscription Path: /sub/
 - User/Password: admin
 
bash <(curl -Ls https://raw.githubusercontent.com/alireza0/s-ui/master/install.sh)- Download the latest Windows release from GitHub Releases
 - Extract the ZIP file
 - Run 
install-windows.batas Administrator - Follow the installation wizard
 
Step 1: To install your desired legacy version, add the version to the end of the installation command. e.g., ver 1.0.0:
VERSION=1.0.0 && bash <(curl -Ls https://raw.githubusercontent.com/alireza0/s-ui/$VERSION/install.sh) $VERSION- Get the latest version of S-UI based on your OS/Architecture from GitHub: https://github.com/alireza0/s-ui/releases/latest
 - OPTIONAL Get the latest version of 
s-ui.shhttps://raw.githubusercontent.com/alireza0/s-ui/master/s-ui.sh - OPTIONAL Copy 
s-ui.shto /usr/bin/ and runchmod +x /usr/bin/s-ui. - Extract s-ui tar.gz file to a directory of your choice and navigate to the directory where you extracted the tar.gz file.
 - Copy *.service files to /etc/systemd/system/ and run 
systemctl daemon-reload. - Enable autostart and start S-UI service using 
systemctl enable s-ui --now - Start sing-box service using 
systemctl enable sing-box --now 
- Get the latest Windows version from GitHub: https://github.com/alireza0/s-ui/releases/latest
 - Download the appropriate Windows package (e.g., 
s-ui-windows-amd64.zip) - Extract the ZIP file to a directory of your choice
 - Run 
install-windows.batas Administrator - Follow the installation wizard
 - Access the panel at http://localhost:2095/app
 
sudo -i
systemctl disable s-ui  --now
rm -f /etc/systemd/system/sing-box.service
systemctl daemon-reload
rm -fr /usr/local/s-ui
rm /usr/bin/s-uiClick for details
Step 1: Install Docker
curl -fsSL https://get.docker.com | shStep 2: Install S-UI
Docker compose method
mkdir s-ui && cd s-ui
wget -q https://raw.githubusercontent.com/alireza0/s-ui/master/docker-compose.yml
docker compose up -dUse docker
mkdir s-ui && cd s-ui
docker run -itd \
    -p 2095:2095 -p 2096:2096 -p 443:443 -p 80:80 \
    -v $PWD/db/:/app/db/ \
    -v $PWD/cert/:/root/cert/ \
    --name s-ui --restart=unless-stopped \
    alireza7/s-ui:latestBuild your own image
git clone https://github.com/alireza0/s-ui
git submodule update --init --recursive
docker build -t s-ui .Click for details
./runSUI.sh# clone repository
git clone https://github.com/alireza0/s-ui
# clone submodules
git submodule update --init --recursiveVisit s-ui-frontend for frontend code
Please build frontend once before!
To build backend:
# remove old frontend compiled files
rm -fr web/html/*
# apply new frontend compiled files
cp -R frontend/dist/ web/html/
# build
go build -o sui main.goTo run backend (from root folder of repository):
./sui- English
 - Farsi
 - Vietnamese
 - Chinese (Simplified)
 - Chinese (Traditional)
 - Russian
 
- Supported protocols:
- General: Mixed, SOCKS, HTTP, HTTPS, Direct, Redirect, TProxy
 - V2Ray based: VLESS, VMess, Trojan, Shadowsocks
 - Other protocols: ShadowTLS, Hysteria, Hysteria2, Naive, TUIC
 
 - Supports XTLS protocols
 - An advanced interface for routing traffic, incorporating PROXY Protocol, External, and Transparent Proxy, SSL Certificate, and Port
 - An advanced interface for inbound and outbound configuration
 - Clients’ traffic cap and expiration date
 - Displays online clients, inbounds and outbounds with traffic statistics, and system status monitoring
 - Subscription service with ability to add external links and subscription
 - HTTPS for secure access to the web panel and subscription service (self-provided domain + SSL certificate)
 - Dark/Light theme
 
Click for details
| Variable | Type | Default | 
|---|---|---|
| SUI_LOG_LEVEL | "debug" | "info" | "warn" | "error" | 
"info" | 
| SUI_DEBUG | boolean | 
false | 
| SUI_BIN_FOLDER | string | 
"bin" | 
| SUI_DB_FOLDER | string | 
"db" | 
| SINGBOX_API | string | 
- | 
Click for details
snap install core; snap refresh core
snap install --classic certbot
ln -s /snap/bin/certbot /usr/bin/certbot
certbot certonly --standalone --register-unsafely-without-email --non-interactive --agree-tos -d <Your Domain Name>
