93 lines
2.8 KiB
Markdown
93 lines
2.8 KiB
Markdown

|
|
# Auto install Shadowsocks Server
|
|
|
|
shadowsocks.sh
|
|
===============
|
|
- Auto Install Shadowsocks(Python) Server for CentOS/Debian/Ubuntu
|
|
- https://teddysun.com/342.html
|
|
|
|
```
|
|
wget --no-check-certificate -O shadowsocks.sh https://gitlab.ni-co.moe/shira/shadowsocks_install/raw/master/shadowsocks.sh
|
|
chmod +x shadowsocks.sh
|
|
./shadowsocks.sh 2>&1 | tee shadowsocks.log
|
|
```
|
|
|
|
shadowsocks-libev.sh
|
|
===============
|
|
- Auto Install Shadowsocks(libev) Server for CentOS
|
|
- https://teddysun.com/357.html
|
|
|
|
```
|
|
wget --no-check-certificate -O shadowsocks-libev.sh https://gitlab.ni-co.moe/shira/shadowsocks_install/raw/master/shadowsocks-libev.sh
|
|
chmod +x shadowsocks-libev.sh
|
|
./shadowsocks-libev.sh 2>&1 | tee shadowsocks-libev.log
|
|
```
|
|
|
|
shadowsocks-libev-debian.sh
|
|
===============
|
|
- Auto Install Shadowsocks(libev) Server for Debian/Ubuntu
|
|
- https://teddysun.com/358.html
|
|
|
|
```
|
|
wget --no-check-certificate -O shadowsocks-libev-debian.sh https://gitlab.ni-co.moe/shira/shadowsocks_install/raw/master/shadowsocks-libev-debian.sh
|
|
chmod +x shadowsocks-libev-debian.sh
|
|
./shadowsocks-libev-debian.sh 2>&1 | tee shadowsocks-libev-debian.log
|
|
|
|
```
|
|
|
|
shadowsocks-go.sh
|
|
===============
|
|
- Auto Install Shadowsocks(Go) Server for CentOS/Debian/Ubuntu
|
|
- https://teddysun.com/392.html
|
|
|
|
```
|
|
wget --no-check-certificate -O shadowsocks-go.sh https://gitlab.ni-co.moe/shira/shadowsocks_install/raw/master/shadowsocks-go.sh
|
|
chmod +x shadowsocks-go.sh
|
|
./shadowsocks-go.sh 2>&1 | tee shadowsocks-go.log
|
|
```
|
|
|
|
shadowsocks-crond.sh
|
|
===============
|
|
- Check Shadowsocks(All version) Server is running or not, and start it if not running
|
|
- https://teddysun.com/525.html
|
|
|
|
```
|
|
wget --no-check-certificate -O /opt/shadowsocks-crond.sh https://gitlab.ni-co.moe/shira/shadowsocks_install/raw/master/shadowsocks-crond.sh
|
|
chmod 755 /opt/shadowsocks-crond.sh
|
|
```
|
|
|
|
shadowsocksR.sh
|
|
===============
|
|
- Auto Install ShadowsocksR Server for CentOS/Debian/Ubuntu
|
|
- https://shadowsocks.be/9.html
|
|
|
|
```
|
|
wget --no-check-certificate https://gitlab.ni-co.moe/shira/shadowsocks_install/raw/master/shadowsocksR.sh
|
|
chmod +x shadowsocksR.sh
|
|
./shadowsocksR.sh 2>&1 | tee shadowsocksR.log
|
|
```
|
|
|
|
shadowsocks-all.sh
|
|
==================
|
|
- Auto Install Shadowsocks Server (all version) for CentOS/Debian/Ubuntu
|
|
- https://teddysun.com/486.html
|
|
|
|
```
|
|
wget --no-check-certificate -O shadowsocks-all.sh https://gitlab.ni-co.moe/shira/shadowsocks_install/raw/master/shadowsocks-all.sh
|
|
chmod +x shadowsocks-all.sh
|
|
./shadowsocks-all.sh 2>&1 | tee shadowsocks-all.log
|
|
```
|
|
|
|
haproxy.sh
|
|
===============
|
|
- Auto Install haproxy for Shadowsocks Server
|
|
- https://shadowsocks.be/10.html
|
|
|
|
```
|
|
wget --no-check-certificate https://gitlab.ni-co.moe/shira/shadowsocks_install/raw/master/haproxy.sh
|
|
chmod +x haproxy.sh
|
|
./haproxy.sh
|
|
```
|
|
|
|
Copyright (C) 2014-2019 Teddysun
|