From c094d90f5ee082531b18ab4fda7caea7f5aeb359 Mon Sep 17 00:00:00 2001 From: Mayx Date: Tue, 18 Jan 2022 15:08:11 +0800 Subject: [PATCH] Update 2022-01-16-wssocks.md --- _posts/2022-01-16-wssocks.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_posts/2022-01-16-wssocks.md b/_posts/2022-01-16-wssocks.md index df4b200..038d59a 100644 --- a/_posts/2022-01-16-wssocks.md +++ b/_posts/2022-01-16-wssocks.md @@ -18,6 +18,10 @@ tags: [wssocks, 代理, 评测] wssocks的使用非常简单,服务端的话我用的是以下命令: ``` ./wssocks-linux-amd64 server --addr :10000 --auth --auth_key --ws_base_path +``` + 另外在服务器上为了安全起见,最好不要用root权限启动(毕竟是冷门的项目有可能会有未知的漏洞),所以我实际会用以下命令: +``` +chroot --userspec=99:99 / /wssocks-linux-amd64 server --addr :10000 --auth --auth_key --ws_base_path ``` 为了方便使用Cloudflare(其实主要是我这服务器还有别的网站),所以配置了一下Nginx(参见[wssocks#11](https://github.com/genshen/wssocks/issues/11#issuecomment-669324542)): ```