FRP内网穿透
frp 是一个专注于内网穿透的高性能的反向代理应用,支持 TCP、UDP、HTTP、HTTPS 等多种协议。可以将内网服务以安全、便捷的方式通过具有公网 IP 节点的中转暴露到公网。项目地址|文档地址
下载在 Github 的 Release 页面中下载到最新版本的客户端和服务端二进制文件,所有文件被打包在一个压缩包中。
部署解压缩下载的压缩包,将其中的 frpc 拷贝到内网服务所在的机器上,将 frps 拷贝到具有公网 IP 的机器上,放置在任意目录。
配置frps.ini123456789101112131415161718[common]# frps的ip地址server_addr = 0.0.0.0# frps的端口server_port = 7000# 用于kcp协议的udp端口# kcp_bind_port = 7000# 认证tokentoken = 666666# 日志log_file = ./frpc.loglog_level = infolog_max_days = 30#面板界面dashboard_addr = 0.0.0.0dashboard_port = 75 ...
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