本文最后更新于 1534 天前,其中的信息可能已经有所发展或是发生改变。
简单粗暴Nginx目录浏览
location ~ ^/(bin|boot|cdrom|lib|lib32|lib64|libx32|media|mnt|patch|root|home|dev|etc|opt|mnt|usr|tmp|sys|sbin|run|proc|var|snap|www)
{
return 404;
}
基于Frp的内网穿透
文章主要参考
https://sunnyrx.com/2016/10/21/simple-to-use-frp/
https://blog.mrabit.com/details/75
配置文件使用
https://github.com/fatedier/frp/blob/master/README_zh.md
Synology’ docker
如果出现“Docker 启动失败” 则需要:先卸载Docker时选择同时删除容器,后安装Docker
要加速Docker容器下载速度,可以在 注册表设置——选择Docker Hub——编辑——启用注册表镜像——然后填入在 阿里云控制台容器镜像服务中的镜像加速器 生成的链接
(可直接使用命令行docker启动)
Shadowsocks On Centos
yum install python-setuptools easy_install pip
pip install shadowsocks
edit a new file /etc/shadowsocks.json
{
"server":"服务器IP",
"server_port":8388,
"local_address": "127.0.0.1",
"local_port":1080,
"password":"密码",
"timeout":300,
"method":"aes-256-cfb",
"fast_open": false
}
前台运行
ssserver -c /etc/shadowsocks.json
后台运行
ssserver -c /etc/shadowsocks.json -d start
ssserver -c /etc/shadowsocks.json -d stop