Cloudflare Argo Tunnel(cloudflared) 转发私网端口到公网(不限速)
Cloudflare Argo Tunnel(cloudflared) 转发私网端口到公网(不限速)
Cloudflare真是私人网站管理员的一大利器, 它最为人熟知的功能是CDN和域名托管服务, 但由于Cloudflare是国外的, 如果在国内使用了它的CDN, 可能非但不能达到加速的效果, 反而会减速, 我的博客套上它的CDN之后就慢了很多.
但作为财大气粗的公司(1.1.1.1 这么nb的IP都拿到了), 它的其他功能也都很强大, 重要的是免费的计划对于大部分私人网站都够用了. 像workers, 可以提供类似云函数的功能, 即访问特定网址, 会执行你编写的js代码, 从而实现网站反向代理, 配合它的KV存储, 也可以实现短网址和文本分享的功能.
今天要为大家介绍的是它的隧道功能, 相对于内网穿透, 它的优点是不用公网服务器, 而且速度还相当可观.
准备
一个被Cloudflare托管的域名(如果不知道怎么配置, 自行去百度)
cloudflared软件包: Releases · cloudflare/cloudflared (github.com)
各种平台 ...
centos7安装aria2
centos7安装aria21234yum install epel-releaseyum install aria2 -y# 开启RPC远程管理命令(用来使用web界面程序连接aria2,所以这个是必须的)aria2c --enable-rpc --rpc-listen-all=true --rpc-allow-origin-all -c -D
vi /root/aria2.conf
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788## '#'开头为注释内容, 选项都有相应的注释说明, 根据需要修改 #### 被注释的选项填写的是默认值, 建议在需要修改时再取消注释 ###允许rpcenable-rpc=true#允许所有来源, web界面跨域权限需要rpc-allow-origi ...
centos 安装ohmyzsh
centos 安装ohmyzshgit zsh1yum install -y git zsh wget vim
安装ohmyzsh1sh -c "$(wget -O- https://sl.zaqai.com/ohmyzsh.sh)"
插件12345678910cd ~/.oh-my-zsh/custom/plugins/git clone https://gitee.com/githubClone/zsh-autosuggestionsgit clone https://gitee.com/ponponon/zsh-syntax-highlightinggit clone https://gitee.com/wangnd/zsh-completions.gitvim ~/.zshrc# 取消第二行注释ZSH_THEME="steeef"plugins=(git zsh-completions zsh-autosuggestions zsh-syntax-highlighting)alias hg="history|grep&quo ...
Android 设备开机或联网时自动开启无线调试(WIFI调试)
Android 设备开机或联网时自动开启无线调试(WIFI调试)一般安卓设备要自动开启无线调试,必须USB连接电脑,然后电脑cmd或终端中输入
12adb tcpip 5555adb connect 设备ip:5555
如果要设为自动开启无线调试,应该怎么弄?
前提:Android 设备需要 Root !!!
一、修改 /system/build.prop ,在末尾增加一条 service.adb.tcp.port=39999
我的红米note5可以,magisk刷的root,但红米4不行,root有手机管家管理,即使给予文件管理器root权限也无法修改该文件
二、在shell中,最好是su(我的是su),执行setprop persist.adb.tcp.port 39999
我的红米4可以
https://www.52pojie.cn/thread-1619496-1-1.html
https://blog.csdn.net/lovelyelfpop/article/details/121395764
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment