2024年04月的文章
使用DD脚本重装系统
DD脚本:https://github.com/bin456789/reinstall系统下载地址:https://dl.lamp.sh/vhd/ 通过镜像包dd到其他系统 curl -O https://mirror.ghproxy.com/https://raw.githubusercontent.com/bin4...
搭建memos轻量笔记软件
编译了memos可执行文件,windows和linux系统可用,需要的自取github上并没有提供可运行的二进制文件,所以手动编译了下https://github.com/usememos/memos链接:https://pan.baidu.com/s/17LfUT...
windows系统添加端口转发
假如A机器的ip为192.168.2.1,B机器的ip为192.168.2.2,我们需要把A机器的8080端口的流量转发到B机器的8080端口 添加端口转发 netsh interface portproxy add v4tov4 listenaddress=192.168.2.1...
Nginx常用配置参考模板
nginx配置反向代理服务 server { listen 80; server_name abc.com; location / { proxy_pass http://localhost:8080/; index index.html; } } nginx配置h5项目,静态文件访问 server { listen 8...