详细地址:https://www.shangyexin.com/2020/01/20/frp/
简单web网页穿透
目录介绍
.ini 配置文件
frpc 是客户端用的
frps 是服务器端用的
(可以理解为 c :client;s:server)
每次启动的时候 带上配置文件,例如: ./frpc -c ./frpc.ini
服务器端配置文件内容 以下都是
[common]
bind_port = 8099 # 穿透的端口
vhost_http_port = 8080 # 服务器展示的端口
客户端配置文件内容
[common]
server_addr = 47.140.126.43 # 服务器ip
server_port = 8099 # 服务器配置文件的端口 bind_port
[web]
type = http
local_port = 8080 # 本地端口
custom_domains = frp.itsse.cn # 我解析了域名,如果不用可以自己看官网配置文件
完整配置文件:( 要什么就抄什么 )
https://github.com/fatedier/frp/blob/master/conf/frps_full.ini
https://github.com/fatedier/frp/blob/master/conf/frpc_full.ini