利用frp内网穿透实现本地开发线上调试
首先在公网服务器A上运行一个公共服务端,并设置*.ktsee.com泛域名解析到该服务器
FRP服务端配置frps.ini:
[common]
bind_port = 7000
bind_udp_port = 7001
vhost_http_port = 7000
vhost_https_port = 7000
subdomain_host = ktsee.com
token = mytoken
max_pool_count = 2
接着在需要内网穿透的电脑上运行客户端,连上前面的服务端或者其他任意服务端FRP客户端配置frpc.ini:
[common]
server_addr = 服务器A的地址,或者其他任意公共服务器地址
server_port = 7000
token = mytoken
[web]
type = http
local_port = 80
use_encryption = false
use_compression = false
subdomain = 3sv
# plugin = https2http
# plugin_local_addr = 127.0.0.1:80
# plugin_crt_path = ./3sv.ktsee.com.crt
# plugin_key_path = ./3sv.ktsee.com.key
# plugin_host_header_rewrite = 127.0.0.1
# plugin_header_X-From-Where = frp
完成后访问http://3sv.ktsee.com:7000或者https://3sv.ktsee.com:7000即可(设置https需要注释https2http插件部分配置)
评论