frp配置自定义域名
两种方式:配置自定义域名和配置自定义二级域名,两种二选一
frps端:
[common] bind_port = 7000 vhost_http_port = 8080 subdomain_host = yourdomain
frpc端:
[common] server_addr = xx.xx.xx.xx server_port = 7000 [ssh] type = tcp local_ip = 192.168.31.211 local_port = 22 remote_port = 6000 #配置自定义域名 #访问方式:yourdomain:8080 [web1] type = http local_port = 5000 custom_domains = yourdomain1 #配置自定义二级域名 #访问方式:yoursubdomain.yourdomain:8080 [web2] type = http local_port = 5001 subdomain = yoursubdomain2
注:如果 frps 配置了 subdomain_host,则 custom_domains 中不能是属于 subdomain_host 的子域名或者泛域名。