├── .gitignore ├── README.md ├── archive ├── docker │ ├── Dockerfile │ └── build.sh ├── prog │ ├── format.php │ ├── route.sh │ └── scutweb.sh └── start.sh ├── cleardns ├── AdGuardHome │ └── AdGuardHome.yaml ├── custom.sh ├── list │ ├── china_ip_list.txt │ ├── chinalist.txt │ └── gfwlist.txt ├── start.sh └── upstream │ └── domestic.conf ├── freedom ├── check.sh └── start.sh ├── nginx ├── conf.d │ ├── adg.conf │ ├── ap.conf │ ├── cert.conf │ ├── default.conf │ ├── relay.conf │ ├── route.conf │ ├── st.conf │ ├── switch.conf │ ├── v2a.conf │ └── zip.conf ├── fastcgi.conf ├── fastcgi_params ├── koi-utf ├── koi-win ├── mime.types ├── modules-enabled │ ├── 50-mod-http-auth-pam.conf │ ├── 50-mod-http-dav-ext.conf │ ├── 50-mod-http-echo.conf │ ├── 50-mod-http-geoip.conf │ ├── 50-mod-http-image-filter.conf │ ├── 50-mod-http-subs-filter.conf │ ├── 50-mod-http-upstream-fair.conf │ ├── 50-mod-http-xslt-filter.conf │ ├── 50-mod-mail.conf │ └── 50-mod-stream.conf ├── nginx.conf ├── nginx.conf.dpkg-dist ├── proxy_params ├── scgi_params ├── sites-available │ └── default ├── sites-enabled │ └── default ├── snippets │ ├── fastcgi-php.conf │ └── snakeoil.conf ├── uwsgi_params └── win-utf ├── route ├── asset │ ├── geoip.dat │ ├── geosite.dat │ └── update.sh ├── config │ ├── dns.json │ ├── inbounds.json │ ├── outbounds.json │ └── routing.json ├── custom.sh ├── log │ ├── ipv4.sh │ ├── ipv6.sh │ ├── level │ └── view.sh ├── mode │ ├── check.sh │ ├── direct.sh │ ├── mode.json │ ├── proxy.sh │ ├── route.sh │ └── set.sh ├── network │ ├── bypass │ │ ├── ipv4 │ │ └── ipv6 │ ├── dns │ ├── interface │ │ ├── ipv4 │ │ └── ipv6 │ └── radvd │ │ ├── config │ │ ├── disable.sh │ │ └── enable.sh ├── rules │ ├── block_domain │ ├── block_ip │ ├── direct_domain │ ├── direct_ipv4 │ ├── direct_ipv6 │ ├── proxy_domain │ ├── proxy_ipv4 │ └── proxy_ipv6 ├── scan.sh └── start.sh └── scutweb ├── asset ├── geoip.dat ├── geosite.dat └── update.sh ├── check.sh ├── config ├── dns.json ├── inbounds.json └── routing.json ├── custom.sh ├── log └── view.sh ├── network ├── bypass │ ├── ipv4 │ └── ipv6 ├── dns ├── interface │ ├── ipv4 │ └── ipv6 └── radvd │ ├── config │ └── ignore └── start.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/README.md -------------------------------------------------------------------------------- /archive/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/archive/docker/Dockerfile -------------------------------------------------------------------------------- /archive/docker/build.sh: -------------------------------------------------------------------------------- 1 | docker build -t archive . 2 | -------------------------------------------------------------------------------- /archive/prog/format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/archive/prog/format.php -------------------------------------------------------------------------------- /archive/prog/route.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/archive/prog/route.sh -------------------------------------------------------------------------------- /archive/prog/scutweb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/archive/prog/scutweb.sh -------------------------------------------------------------------------------- /archive/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/archive/start.sh -------------------------------------------------------------------------------- /cleardns/AdGuardHome/AdGuardHome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/cleardns/AdGuardHome/AdGuardHome.yaml -------------------------------------------------------------------------------- /cleardns/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/cleardns/custom.sh -------------------------------------------------------------------------------- /cleardns/list/china_ip_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/cleardns/list/china_ip_list.txt -------------------------------------------------------------------------------- /cleardns/list/chinalist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/cleardns/list/chinalist.txt -------------------------------------------------------------------------------- /cleardns/list/gfwlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/cleardns/list/gfwlist.txt -------------------------------------------------------------------------------- /cleardns/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/cleardns/start.sh -------------------------------------------------------------------------------- /cleardns/upstream/domestic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/cleardns/upstream/domestic.conf -------------------------------------------------------------------------------- /freedom/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/freedom/check.sh -------------------------------------------------------------------------------- /freedom/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/freedom/start.sh -------------------------------------------------------------------------------- /nginx/conf.d/adg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/conf.d/adg.conf -------------------------------------------------------------------------------- /nginx/conf.d/ap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/conf.d/ap.conf -------------------------------------------------------------------------------- /nginx/conf.d/cert.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/conf.d/cert.conf -------------------------------------------------------------------------------- /nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /nginx/conf.d/relay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/conf.d/relay.conf -------------------------------------------------------------------------------- /nginx/conf.d/route.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/conf.d/route.conf -------------------------------------------------------------------------------- /nginx/conf.d/st.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/conf.d/st.conf -------------------------------------------------------------------------------- /nginx/conf.d/switch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/conf.d/switch.conf -------------------------------------------------------------------------------- /nginx/conf.d/v2a.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/conf.d/v2a.conf -------------------------------------------------------------------------------- /nginx/conf.d/zip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/conf.d/zip.conf -------------------------------------------------------------------------------- /nginx/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/fastcgi.conf -------------------------------------------------------------------------------- /nginx/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/fastcgi_params -------------------------------------------------------------------------------- /nginx/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/koi-utf -------------------------------------------------------------------------------- /nginx/koi-win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/koi-win -------------------------------------------------------------------------------- /nginx/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/mime.types -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-auth-pam.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-auth-pam.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-dav-ext.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-dav-ext.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-echo.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-echo.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-geoip.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-geoip.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-image-filter.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-image-filter.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-subs-filter.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-subs-filter.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-upstream-fair.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-upstream-fair.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-http-xslt-filter.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-http-xslt-filter.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-mail.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-mail.conf -------------------------------------------------------------------------------- /nginx/modules-enabled/50-mod-stream.conf: -------------------------------------------------------------------------------- 1 | /usr/share/nginx/modules-available/mod-stream.conf -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/nginx.conf.dpkg-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/nginx.conf.dpkg-dist -------------------------------------------------------------------------------- /nginx/proxy_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/proxy_params -------------------------------------------------------------------------------- /nginx/scgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/scgi_params -------------------------------------------------------------------------------- /nginx/sites-available/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/sites-available/default -------------------------------------------------------------------------------- /nginx/sites-enabled/default: -------------------------------------------------------------------------------- 1 | /etc/nginx/sites-available/default -------------------------------------------------------------------------------- /nginx/snippets/fastcgi-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/snippets/fastcgi-php.conf -------------------------------------------------------------------------------- /nginx/snippets/snakeoil.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/snippets/snakeoil.conf -------------------------------------------------------------------------------- /nginx/uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/uwsgi_params -------------------------------------------------------------------------------- /nginx/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/nginx/win-utf -------------------------------------------------------------------------------- /route/asset/geoip.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/asset/geoip.dat -------------------------------------------------------------------------------- /route/asset/geosite.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/asset/geosite.dat -------------------------------------------------------------------------------- /route/asset/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/asset/update.sh -------------------------------------------------------------------------------- /route/config/dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/config/dns.json -------------------------------------------------------------------------------- /route/config/inbounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/config/inbounds.json -------------------------------------------------------------------------------- /route/config/outbounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/config/outbounds.json -------------------------------------------------------------------------------- /route/config/routing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/config/routing.json -------------------------------------------------------------------------------- /route/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/custom.sh -------------------------------------------------------------------------------- /route/log/ipv4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/log/ipv4.sh -------------------------------------------------------------------------------- /route/log/ipv6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/log/ipv6.sh -------------------------------------------------------------------------------- /route/log/level: -------------------------------------------------------------------------------- 1 | info 2 | -------------------------------------------------------------------------------- /route/log/view.sh: -------------------------------------------------------------------------------- 1 | tail -f /etc/route/log/connection.log | grep --color "\->" 2 | -------------------------------------------------------------------------------- /route/mode/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/mode/check.sh -------------------------------------------------------------------------------- /route/mode/direct.sh: -------------------------------------------------------------------------------- 1 | /etc/route/mode/set.sh direct 2 | -------------------------------------------------------------------------------- /route/mode/mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/mode/mode.json -------------------------------------------------------------------------------- /route/mode/proxy.sh: -------------------------------------------------------------------------------- 1 | /etc/route/mode/set.sh proxy 2 | -------------------------------------------------------------------------------- /route/mode/route.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/mode/route.sh -------------------------------------------------------------------------------- /route/mode/set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/mode/set.sh -------------------------------------------------------------------------------- /route/network/bypass/ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/network/bypass/ipv4 -------------------------------------------------------------------------------- /route/network/bypass/ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/network/bypass/ipv6 -------------------------------------------------------------------------------- /route/network/dns: -------------------------------------------------------------------------------- 1 | 192.168.2.1 2 | -------------------------------------------------------------------------------- /route/network/interface/ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/network/interface/ipv4 -------------------------------------------------------------------------------- /route/network/interface/ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/network/interface/ipv6 -------------------------------------------------------------------------------- /route/network/radvd/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/network/radvd/config -------------------------------------------------------------------------------- /route/network/radvd/disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/network/radvd/disable.sh -------------------------------------------------------------------------------- /route/network/radvd/enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/network/radvd/enable.sh -------------------------------------------------------------------------------- /route/rules/block_domain: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /route/rules/block_ip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /route/rules/direct_domain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/rules/direct_domain -------------------------------------------------------------------------------- /route/rules/direct_ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/rules/direct_ipv4 -------------------------------------------------------------------------------- /route/rules/direct_ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/rules/direct_ipv6 -------------------------------------------------------------------------------- /route/rules/proxy_domain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/rules/proxy_domain -------------------------------------------------------------------------------- /route/rules/proxy_ipv4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /route/rules/proxy_ipv6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /route/scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/scan.sh -------------------------------------------------------------------------------- /route/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/route/start.sh -------------------------------------------------------------------------------- /scutweb/asset/geoip.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/asset/geoip.dat -------------------------------------------------------------------------------- /scutweb/asset/geosite.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/asset/geosite.dat -------------------------------------------------------------------------------- /scutweb/asset/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/asset/update.sh -------------------------------------------------------------------------------- /scutweb/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/check.sh -------------------------------------------------------------------------------- /scutweb/config/dns.json: -------------------------------------------------------------------------------- 1 | { 2 | "dns": {} 3 | } 4 | -------------------------------------------------------------------------------- /scutweb/config/inbounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/config/inbounds.json -------------------------------------------------------------------------------- /scutweb/config/routing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/config/routing.json -------------------------------------------------------------------------------- /scutweb/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/custom.sh -------------------------------------------------------------------------------- /scutweb/log/view.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/log/view.sh -------------------------------------------------------------------------------- /scutweb/network/bypass/ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/network/bypass/ipv4 -------------------------------------------------------------------------------- /scutweb/network/bypass/ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/network/bypass/ipv6 -------------------------------------------------------------------------------- /scutweb/network/dns: -------------------------------------------------------------------------------- 1 | 192.168.2.1 2 | -------------------------------------------------------------------------------- /scutweb/network/interface/ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/network/interface/ipv4 -------------------------------------------------------------------------------- /scutweb/network/interface/ipv6: -------------------------------------------------------------------------------- 1 | ADDRESS=fc00::2/64 2 | GATEWAY= 3 | FORWARD=true 4 | -------------------------------------------------------------------------------- /scutweb/network/radvd/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/network/radvd/config -------------------------------------------------------------------------------- /scutweb/network/radvd/ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scutweb/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuohei/scut-web/HEAD/scutweb/start.sh --------------------------------------------------------------------------------