在LNMP环境下实现反向代理
安装LNMP稳定版只需要安装nginx wget http://soft.vpser.net/lnmp/lnmp1.9.tar.gz -cO lnmp1.9.tar.gz && tar zxf lnmp1.9.tar.gz && cd lnmp1.9 && ./install.sh nginx &nb…
使用Caddy2作为文件服务器
Caddyfilehttp://yourdomain.com { basicauth { bob xDJhJDEwJEVoOWxYTmY5eVdCbXhhRC95SGZoYxU0bVQvaXhyamdLRkxKdUlPSHhLVFY0RWNlRDN5eDx2 } file_server { root /home/share browse }}其中密…
github国内设置
git config --global url.https://xx.xx.xx/.insteadof https:// 增加 git config --global --unset url.https://xx.xx.xx/.insteadof https:// 取消 git config --global --list 检查 xx.xx.xx …
玩客云官方系统ROOT安装哪吒探针
下载哪吒 nezha-agent_linux_arm.tar.gz 哪吒上传ROOT目录给于权限chmod 755 nezha-agent 设置开机自起cd /etc/init.dtouch S96nezhachmod 755 S96nezhaecho "sleep 10" >> S96nezhaecho "…
docker filebrowser
mkdir filebrowser cd filebrowser touch filebrowser.db settings.json 宿主机文件夹 容器文件夹 说明 /path/to/root /srv 根目录,文件存放位置 /path/to/filebrowser.db /database/filebrowser.db 数据库 /path/to…
自制N1 Docker Openwrt镜像及运行镜像
1.编译openwrtTarget System 选择 QEMU ARM VIrtual Machine Subtarget 选择 ARMv8 multiplatform 其它的随意 编译好的openwrt,会生成 rootfs 打包文件:openwrt-armvirt-64-default-rootfs.tar.gz在装好armbian和dock…
玩客云当录像机安装pyNvr
pyNvr脚本安装python3如果使用百度网盘:pip3 install bypy bypy info 复制链接粘贴到浏览器打开,登录,填写授权码。如果出错试试删掉配置文件重新授权rm -Rf ~/.bypy rm -f ~/.bypy.* 如果使用阿里云盘:pip3 install aligo 安装opencv:apt install pyth…
使用 Dockerfile 定制镜像
示例 frps创建一个文件夹 frpmkdir frp && cd frp编辑Dockerfile文件nano Dockerfile下面代码复制粘贴FROM alpine MAINTAINER Stille ENV FRP_VERSION 0.38.0 WORKDIR / RUN set -xe && \ apk a…