You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Example Compose Files
Here is a sample server(a shadowsocks with a shadow-tls), user only need to replace `EXAMPLE_PASSWORD_SS`, `EXAMPLE_PASSWORD_ST`, run it on your remote vps:
```yaml
version: '3.5'
services:
shadowsocks:
image: shadowsocks/shadowsocks-libev
restart: always
command: /bin/sh -c 'exec ss-server -s 0.0.0.0 -p 24000 -k EXAMPLE_PASSWORD_SS -m chacha20-ietf-poly1305 -t 300'
shadow-tls:
image: ghcr.io/ihciah/shadow-tls:latest
restart: always
ports:
- "8443:8443"
environment:
- MODE=server
# - V3=1
- LISTEN=0.0.0.0:8443
- SERVER=shadowsocks:24000
- TLS=cloud.tencent.com:443
- PASSWORD=EXAMPLE_PASSWORD_ST
depends_on:
- shadowsocks
And the client side(you can deploy it in your private network or vps inside the country), replace EXAMPLE_PASSWORD_SS, EXAMPLE_PASSWORD_ST, YOUR_VPS_IP with yours like above:
Then connect cn_vps:3443 with shadowsocks protocol on your mobile phones or PCs will work or connect cn_vps:1080 with sock5h protocol on browser proxy.
The text was updated successfully, but these errors were encountered:
目前个人觉得可以改进的几个地方
And the client side(you can deploy it in your private network or vps inside the country), replace
EXAMPLE_PASSWORD_SS
,EXAMPLE_PASSWORD_ST
,YOUR_VPS_IP
with yours like above:Then connect
cn_vps:3443
with shadowsocks protocol on your mobile phones or PCs will work or connectcn_vps:1080
with sock5h protocol on browser proxy.The text was updated successfully, but these errors were encountered: