为frp进行域名解析设置

frp进行http映射需要设置域名。

第一步配置域名

我以自己的腾讯云为例

添加第一条解析记录


主机记录处填写frp

记录值处填写vps的外网IP

添加第二条解析记录


主机记录处填写*.frp

记录值处填写frp.+域名

第二步配置frps.ini和frpc.ini

[common]


bind_port = 7000


kcp_bind_port = 7000


vhost_http_port = 8080


dashboard_port = 7500


dashboard_user = admin


dashboard_pwd = admin


subdomain_host = frp.abc.club


[common]
server_addr = frp.abc.club
server_port = 7000
log_file = ./frpc.log
log_level = info
log_max_days = 7


[ssh]
type = tcp
local_ip = 192.168.5.134 为本机的ip地址 
local_port = 3389
remote_port =6600


[web]
type =http 
local_ip = 192.168.5.134
local_port = 8000
subdomain = test1


[web2]
type =http
local_ip = 192.168.5.134 
local_port = 8082
subdomain = test2

你可能感兴趣的:(frp)