Skip to content
This repository has been archived by the owner on Aug 9, 2022. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lipangit authored Mar 10, 2021
1 parent a3b6180 commit cf0c743
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
# DockerShadowsocksServer
# DockerShadowsocksServer

几行命令行搭建shadowsocks server

1.安装最基础的docker: apt-get install docker; yum install docker

2.docker pull shadowsocks/shadowsocks-libev

3.docker run -e PASSWORD=helloworld -e METHOD=aes-128-cfb -p22360:8388 -p22360:8388/udp -d shadowsocks/shadowsocks-libev

其中"helloworld"是密码,22360是对外端口,aes-128-cfb是加密算法,用其他算法速度明显变慢,经过测试这个是最快的。

<img width="150" alt="WechatIMG151" src="https://user-images.githubusercontent.com/2038071/110611311-0f008000-81ca-11eb-97b4-18fb7aa1d941.png">

0 comments on commit cf0c743

Please sign in to comment.